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