Answers for "stop application in port process windows"

4

windows stop process running on port 8080

netstat  -ano  |  findstr  <Port Number>
taskkill  /F  /PID  <Process Id>
Posted by: Guest on August-21-2020
-2

windows kill process on port

netstat -ano | findstr :<PORT>
taskkill /PID <PID> /F
Posted by: Guest on January-14-2021

Code answers related to "stop application in port process windows"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language