windows ip kill code example
Example 1: remove port binding windows
netstat -a -n -o | findstr :80
TaskKill /PID pidnum
Example 2: stop kill network connection using cmd line
FOR /F ... %variable IN ('command') DO otherCommand %variable...
netstat -a -n -o | findstr :80
TaskKill /PID pidnum
FOR /F ... %variable IN ('command') DO otherCommand %variable...