Windows finding processes running on certain ports:
C:\WINDOWS\system32> netstat -ano | findstr 8080 -----> any port you want to get the status about
Rightmost column is PID.
To kill any process use the following command:
C:\WINDOWS\system32> taskkill /F /PID 4184 -----> any process you want to kill
No comments:
Post a Comment