TaskKill in CMD
taskkill /f /im notepad.exe /t
taskkill /f /im chrome.exe /t
Dizzy Dormouse
taskkill /f /im notepad.exe /t
taskkill /f /im chrome.exe /t
## check and kill used "ports"
netstat -ano | findstr :8080
taskkill /PID <yourid> /F
taskkill /F /PID [PROCESS ID]
netstat -ano | findstr :3000
taskkill /PID "123" /F
taskkill /PID 1234
// Kill process by exe name
taskkill /IM "ProcessName.exe" /F