Created
July 13, 2022 06:50
-
-
Save RaRaRatchet/a2589900c50b5a42adaf33d20a40bab0 to your computer and use it in GitHub Desktop.
[Get-Drivers] Get installed Drivers from Win32
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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