Answers for "kill on the procss on specific port using cmd in windows"

5

kill process on port windows

netstat -ano | findstr "PORT_NUMBER"

taskkill /PID PORT_NUMBER /f
Posted by: Guest on June-09-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 on the procss on specific port using cmd in windows"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language