Skip to content

Instantly share code, notes, and snippets.

@RaRaRatchet
Created July 13, 2022 06:50
Show Gist options
  • Select an option

  • Save RaRaRatchet/a2589900c50b5a42adaf33d20a40bab0 to your computer and use it in GitHub Desktop.

Select an option

Save RaRaRatchet/a2589900c50b5a42adaf33d20a40bab0 to your computer and use it in GitHub Desktop.
[Get-Drivers] Get installed Drivers from Win32
Get-WMIObject Win32_PnPSignedDriver | where {$_.Devicename -like "*Realtek*"} | select-object -Property * | Export-CSV ZBNB31156_RealtekDriver.csv
Get-WMIObject Win32_PnPSignedDriver | where {$_.Devicename -like "*Smart*"} | select-object -Property * | Export-CSV -Path ZBNB31156_Driver_SmartSound.csv
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment