Monday, July 15, 2019

Getting and Killing Process running at certain port


Get all the processes running at port using

netstat -ano | findstr :yourPortNumber

and then
kill using pid
taskkill /pid {processid} /f

No comments:

Post a Comment