标签:
1,查看指定端口被哪个进程占用。
>netstat -ano|findstr 8008
TCP 127.0.0.1:8083 0.0.0.0:0 LISTENING 5896
2,查看指定进程id对应的程序信息。
tasklist|findstr "5896"
SogouExplorer.exe 5896 Console 0 18,152 K
windows查看端口占用情况
原文地址:http://www.cnblogs.com/codeinet/p/5832086.html