Monday, January 7, 2019

Powershell – Getting device driver version

Here’s a quick tip to get a list of device driver version installed:

  • Open Powershell (as Administrator)
  • Execute the following command:
    Get-WmiObject Win32_PnPSignedDriver | select DeviceName, Manufacturer, DriverVersion

After executing the command, you’lll get something like this, where the third column displays the driver version:
Untitled

No comments:

Post a Comment