mirror of
https://github.com/ivuorinen/cheatsheet-tldr.git
synced 2026-02-20 23:50:55 +00:00
Move pages under tldr, lint run.sh, update docs
This commit is contained in:
37
tldr/windows/driverquery
Normal file
37
tldr/windows/driverquery
Normal file
@@ -0,0 +1,37 @@
|
||||
---
|
||||
syntax: markdown
|
||||
tags: [tldr, windows]
|
||||
source: https://github.com/tldr-pages/tldr.git
|
||||
---
|
||||
# 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 /?`
|
||||
Reference in New Issue
Block a user