PowerShell

Killing processes

Stop-Process -Id 55904 -Force

Kill a process using a certain port

Stop-Process -Id (Get-NetTCPConnection -LocalPort 8080 -State Listen).OwningProcess -Force