Obtaining the list of drivers installed on your PC with their version using PowerShell (Windows 10)

If you want to get the list of drivers installed on your Windows 10 PC, you only need to paste the following command into PowerShell (I am using version 5.1 of PowerShell):

Get-WmiObject Win32_PnPSignedDriver| select devicename, FriendlyName, DriverVersion, DriverDate | Export-CSV -Path “.\My Drivers.csv” -NoTypeInformation

With this, a file called “My Drivers” will be placed in the directory where you are in PowerShell.

Regards!

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Twitter picture

You are commenting using your Twitter account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s