kill process on port windows task manager code example
Example 1: kill process on port windows
netstat -ano | findstr "PORT_NUMBER"
taskkill /PID PORT_NUMBER /f
Example 2: kill process running on port in windows
netstat -ano | findstr :8080
taskkill /PID <yourid> /F
Example 3: windows kill process on port
netstat -ano | findstr :<PORT>
taskkill /PID <PID> /F
Example 4: kill the process running on 8080
taskkill /F /PID <Process Id>