windows kill a running port code example
Example 1: cmd kill process on port
## check and kill used "ports"
netstat -ano | findstr :8080
taskkill /PID <yourid> /F
Example 2: kill port 8080 windows cmd command
kill process in windows
## check and kill used "ports"
netstat -ano | findstr :8080
taskkill /PID <yourid> /F
kill process in windows