Answers for "how to close a port already in use windows 10"

6

close ports in windows

netstat -ano | findstr :8080

          // listening value
taskkill /pid 11740 /f
Posted by: Guest on October-07-2021
-2

kill port in windows

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

Code answers related to "how to close a port already in use windows 10"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language