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