Windows - CMD CMDsheet
Windows - CMD CMDsheet
Process
Get-Process | To list the process |
wmic process list brief | To list the running process |
wmic process list full | To list the running processes with more details |
tasklist | To list the running processes |
wmic process where "name='ProcessName.exe'" call terminate | To terminate the process |
Filtering
tasklist | findstr notepad | To filter the running process |
This post is licensed under CC BY 4.0 by the author.