TLDR
Enter a command. For example: choco pin, shutdown, set, expand.

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_clause}} {{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

This is a tldr pages (source, CC BY 4.0) web wrapper for cheat-sheets.org. All commands, popular commands, most used linux commands. Referrals. Progressive Web Application (PWA) version to install on your device.