Answers for "kill port 5000 windows cmd"

24

windows kill port

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

windows kill process on port

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

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language