How to get Drivers List on windows

How to get Drivers List on windows

If you want to know all about your drivers installed in your Windows PC below is the command
DRIVERQUERY /V /FO CSV > %ComputerName%.csv
For Remote PC
DRIVERQUERY /S remote_PC /V /FO CSV > remote_PC.csv

For Example :-
C:\Users\gkhan>DRIVERQUERY /V /FO CSV > %ComputerName%.csv
C:\Users\gkhan>dir
Volume in drive C has no label.
Volume Serial Number is 785D-436D

Directory of C:\Users\gkhan
you will get a CSV file above directory with your computername.csv

Leave a Comment