netstat -ano | findstr :3000
taskkill /PID "123" /F
taskkill /F /PID [PROCESS ID]
// Kill process by exe name
taskkill /IM "ProcessName.exe" /F
taskkill /PID 1234
command netstat -ano|findstr "PID :<port-number>"
taskkill /pid 43144 /f
netstat -ano | findstr :<yourPortNumber>
taskkill /PID <typeyourPIDhere> /F
Taskkill /F /PID <Service PID>