stop process on port windows 10 code example
Example 1: windows stop process running on port 8080
netstat -ano | findstr <Port Number>
taskkill /F /PID <Process Id>
Example 2: kill process running on port in windows
netstat -ano | findstr :8080
taskkill /PID <yourid> /F