[Edit]
+
0
-
0
cmd kill process on port 80 in windows
1 2 3 4 5 6 7 8 9 10# 1. open cmd (windows key + r; type: cmd; press enter key) # 2. type: netstat -ano | findstr LISTENING | findstr :80 PIDs | # Example output: v # TCP 0.0.0.0:80 0.0.0.0:0 LISTENING 6880 # TCP [::]:80 [::]:0 LISTENING 6880 # 3. type: taskkill /F /PID 6880