windows 查看端口被哪个程序占用

如题所述

在windows命令行窗口下执行:运行--cmd
C:\>netstat -aon|findstr "8080"
TCP 127.0.0.1:80 0.0.0.0:0 LISTENING 2448
端口被进程号为2448的进程占用,继续执行下面命令:
C:\>tasklist|findstr "2448"
thread.exe 2016 Console 0 16,064 K
很清楚,thread占用了你的端口,Kill it
命令:taskkill -F -PID 2448
温馨提示:答案为网友推荐,仅供参考
相似回答