JustPaste.it

wmic

Grammar/syntax

https://isc.sans.edu/diary/The+Grammar+of+WMIC/2376

Lists all of the common WMIC object aliases

WMIC /?

List Processes

# table format

wmic process list

# property=value

wmic process list full

# Less properties/columns
wmic process get ProcessId,Description,ParentProcessId,ReadOperationCount,WriteOperationCount

# Query system child processes

wmic process where parentprocessid=4 get ProcessId,Description,ParentProcessId