Answers for "killing port session in windows"

1

kill port windows

netstat -ano | findstr :<PORT>

(Replace <PORT> with the port number you want, but keep the colon)

Step 2:

Next, run the following command:

taskkill /PID <PID> /F
Posted by: Guest on September-27-2021
1

kill port in windows

netstat -ano | findstr : <port>
taskkill /PID <PID> /F
Posted by: Guest on September-02-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language