kill port windoes code example
Example 1: kill process running on port in windows
netstat -ano | findstr :8080
taskkill /PID <yourid> /F
Example 2: close all localhost connections
netstat -ano | findstr :yourPortNumber
taskkill /PID typeyourPIDhere /F