Answers for "kill a service based on the port windows cmd"

8

kill process running on port in windows

netstat -ano | findstr :8080
taskkill /PID <yourid> /F
Posted by: Guest on June-12-2020
0

kill a process by looking up the port in windows

//Open command prompt and run the following commands

C:\Users\username>netstat -o -n -a | findstr 0.0:3000
   TCP    0.0.0.0:3000      0.0.0.0:0              LISTENING       3116

C:\Users\username>taskkill /F /PID 3116
//here 3116 is the process ID
Posted by: Guest on September-20-2021

Code answers related to "kill a service based on the port windows cmd"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language