Helpful Windows Commands Find and Kill Process by Port Find the process id(s) listening to the port netstat -ano | findstr <port> Kill process for given process id (pid) taskkill -F -PID <pid> * Replace - with / in CMD terminal.