Written by 4:50 pm Microsoft, Microsoft Azure, PowerShell, Virtualization, Windows, Windows Server • One Comment

Get Installed Driver Version using PowerShell

PowerShell get Drvier Version

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: , , , , , , Last modified: September 1, 2018
Close