how to kill port 80 cmd 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
netstat -aon | findstr 8080
taskkill /f /pid 77777
## check and kill used "ports"
netstat -ano | findstr :8080
taskkill /PID <yourid> /F
netstat -aon | findstr 8080
taskkill /f /pid 77777