Autostart Verzeichnis aufrufen

Run from the command line (+R)

shell:startup

List Processes on the Command Line

tasklist | more

Find by name

tasklist /FI "IMAGENAME eq notepad.exe"

Abbildname                     PID Sitzungsname       Sitz.-Nr. Speichernutzung
========================= ======== ================ =========== ===============
notepad.exe                  23496 Console                    3        14.516 K

Kill Processes by PID or Name on the Command Line

Kill by PID

taskkill /F /PID PID_NUMBER

Kill by Name

taskkill /IM "notepad.exe" /F

Find Process by Port used

E.g. finding processes using port 9000.

Using netstat

Run from the command line (+R) enter cmd

netstat -aof | findstr :8080

Using Powershell

PS C:\Users\someuser> Get-Process -Id (Get-NetTCPConnection -LocalPort 9000).OwningProcess

Handles  NPM(K)    PM(K)      WS(K)     CPU(s)     Id  SI ProcessName
-------  ------    -----      -----     ------     --  -- -----------
    424      40     6052       7980       0,16  11904   9 myprocess