Answers for "kill port 8000 windows"

20

windows kill port

netstat -ano | findstr :3001
taskkill /PID <yourid> /F
Posted by: Guest on October-06-2020
0

kill port windows

netstat -ano | findstr :<PORT>

(Replace <PORT> with the port number you want, but keep the colon)

Step 2:

Next, run the following command:

taskkill /PID <PID> /F
Posted by: Guest on September-27-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language