windows cmd kill process on port 8080 code example
Example 1: cmd kill process on port
## check and kill used "ports"
netstat -ano | findstr :8080
taskkill /PID /F
Example 2: kill process on port windows
netstat -ano | findstr "PORT_NUMBER"
taskkill /PID PORT_NUMBER /f
Example 3: windows kill process on port
netstat -ano | findstr :
taskkill /PID /F