Answers for "how to free port in windows"

1

remove port binding windows

netstat -a -n -o | findstr :80
TaskKill /PID pidnum
Posted by: Guest on October-19-2020
1

kill port

:8080.
C:\Users\psmith>netstat -ano|findstr "PID :8080"
Proto Local Address Foreign Address State PID
TCP 0.0.0.0:8081 0.0.0.0:0 LISTENING 18264

taskkill /pid 18264 /f
Posted by: Guest on May-27-2020
0

stop kill network connection using cmd line

FOR /F ... %variable IN ('command') DO otherCommand %variable...
Posted by: Guest on September-07-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language