If you are using Windows Server Core or you just want to check the driver version using PowerShell you can using the following command:
Get-WmiObject Win32_PnPSignedDriver| select DeviceName, DriverVersion, Manufacturer
You can also filter a specific driver name using the following command:
Get-WmiObject Win32_PnPSignedDriver| select DeviceName, DriverVersion, Manufacturer | where {$_.DeviceName -like "*Intel*"}
Tags: Core Server, Driver, Driverversion, Microsoft, PowerShell, Windows, Windows Server Last modified: September 1, 2018
if I want to get the powerdata of the right dirver, how can I get using Get-WmiObject?
“Get-WmiObject Win32PnPSignedDriver” does not work anymore.