Answers for "how to kill task running on port 8080 windows"

5

windows stop process running on port 8080

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

kill port in windows

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

Code answers related to "how to kill task running on port 8080 windows"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language