Answers for "windows cmd port kill"

20

windows kill port

netstat -ano | findstr :3001
taskkill /PID <yourid> /F
Posted by: Guest on October-06-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 "Shell/Bash"

Browse Popular Code Answers by Language