Answers for "close port in windows 10"

7

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 September-02-2021
-1

kill port in windows

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

Code answers related to "close port in windows 10"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language