1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-21 21:42:08 +02:00
tldr/pages/windows/driverquery.md
Vitor Henrique 46a054215a
pages*: make help and version commands comply with the style guide (#12107)
* pages*: use generic word for help

* git: add newline to the end

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>

* pages*: make help and version commands comply with the style guide

* java: fix Java name

---------

Co-authored-by: K.B.Dharun Krishna <kbdharunkrishna@gmail.com>
2024-01-30 12:55:24 +08:00

32 lines
714 B
Markdown

# driverquery
> Display information about installed device drivers.
> More information: <https://learn.microsoft.com/windows-server/administration/windows-commands/driverquery>.
- Display a list of all installed device drivers:
`driverquery`
- Display a list of drivers in the specified format:
`driverquery /fo {{table|list|csv}}`
- Display a list of drivers with a column to indicate if they are signed:
`driverquery /si`
- Exclude the header in the output list:
`driverquery /nh`
- Display a list of drivers for a remote machine:
`driverquery /s {{hostname}} /u {{username}} /p {{password}}`
- Display a list of drivers with verbose information:
`driverquery /v`
- Display help:
`driverquery /?`