Generate a List of Installed Drivers from the Command Line

To get verbose output you can use the /v parameter:
driverquery /v
Or to output in list or csv format instead of the default table format, you can use the /FO switch
driverquery /FO [list, table, csv]
So for instance, if you ran the following command to give you verbose information in list format:
driverquery /FO list /v
You should see output similar to this:
image
If you have cygwin installed you could pipe this through grep, but you should be able to pipe the output into a file, for instance like this:
driveryquery > test.txt
image
Always useful to know how to use the command line!

Comments

Popular Posts