Answers for "windows kill port exe"

20

windows kill port

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

kill a port windows

netstat -ano | findstr :<PORT>
taskkill //PID <PID> //F
OR
taskkill /PID <PID> /F
Posted by: Guest on August-30-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language