how to check and kill process listening on port windows 10 code example
Example: kill process running on port in windows
netstat -ano | findstr :8080
taskkill /PID <yourid> /F
netstat -ano | findstr :8080
taskkill /PID <yourid> /F