Post

Windows - CMD CMDsheet

Process

Get-ProcessTo list the process
wmic process list briefTo list the running process
wmic process list fullTo list the running processes with more details
tasklistTo list the running processes
wmic process where "name='ProcessName.exe'" call terminateTo terminate the process

Filtering

tasklist | findstr notepadTo filter the running process
This post is licensed under CC BY 4.0 by the author.