1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-22 01:22:09 +02:00

wmic: add page (#4383)

This commit is contained in:
Rowan 2020-10-01 21:32:41 +01:00 committed by GitHub
parent 6a9edff745
commit 61484ccb44
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

32
pages/windows/wmic.md Normal file
View file

@ -0,0 +1,32 @@
# wmic
> Interactive shell for detailed information about running processes.
> More information: <https://docs.microsoft.com/windows-server/administration/windows-commands/wmic>.
- Fundamental grammar:
`wmic {{alias}} {{where_claus}} {{verb_clause}}`
- Show brief details about the currently running processes:
`wmic process list brief`
- Show full details about the currently running processes:
`wmic process list full`
- Access specific fields such as process name, process ID and parent process ID:
`wmic process get {{name,processid,parentprocessid}}`
- Display information about a specific process:
`wmic process where {{name="example.exe"}} list full`
- Display specific fields for a specific process:
`wmic process where processid={{pid}} get {{name,commandline}}`
- Kill a process:
`wmic process {{pid}} delete`