Kill the task running on particular port in windows
First find the process id using
netstat -aon |find /i “listening” |find “port”
replace it with port number..And find the PID displayed on the last coloumn
Now Kill the process using
taskkill /F /PID “Process ID”
No images available.