System administrators sometimes need to be able to produce a list of drivers that are installed on their system. Driveryquery.exe is an excellent command line tool from Microsoft to accomplish this. This tool will give you a report on all of the current device drivers that are loaded on your system. The command line tool also gives you several options on the information that it will display. Below is a screenshot that shows all of the options available for running Driverquery.exe.
Examples Of Driverquery.exe
This example will pipe the information from driverquery.exe to a txt file on the drive.
C:\driverquery.exe > C:\driverqueyr.txt
This example will format the output into a list view.
C:\driverquery.exe /fo list
This example will turn on verbose output for more information.
C:\driverquery.exe /V
This example will show drivers that are currently running.
C:\driverquery.exe /v | findstr Running




