Skip to content

Latest commit

 

History

History
11 lines (8 loc) · 201 Bytes

File metadata and controls

11 lines (8 loc) · 201 Bytes

Check for Processes

  • tasklist
  • wmic process list full

In PowerShell

  • Get-Process
  • Get-Process -Name 'Notepad'

List path where the process is running:

  • (Get-Process -Name 'Calculator').Path