windows sever kill port code example
Example 1: kill process on port windows
netstat -ano | findstr "PORT_NUMBER"
taskkill /PID PORT_NUMBER /f
Example 2: kill service by port number on windows
taskkill /F /PID PORT_NUMBER
netstat -ano | findstr "PORT_NUMBER"
taskkill /PID PORT_NUMBER /f
taskkill /F /PID PORT_NUMBER