close 8080 port code example
Example 1: kill process on port windows
netstat -ano | findstr "PORT_NUMBER"
taskkill /PID PORT_NUMBER /f
Example 2: kill process running on port in windows
netstat -ano | findstr :8080
taskkill /PID <yourid> /F
Example 3: how to stop port 8080
taskkill /F /PID <Process Id>
Example 4: kill the process running on 8080
netstat -ano | findstr <Port Number>
Example 5: how to stop port 8080
C:\Users\RevisitClass>taskkill /F /PID 19788
SUCCESS: The process with PID 19788 has been terminated.