精华:
netstat -ano netstat -aon|findstr "11085" tasklist|findstr "8576"
(1)调出cmd
|--可以使用Win+R,输入cmd,敲回车(2)查看端口被占用情况
输入:netstat -ano
查看所有端口或输入:netstat -aon|findstr "11085"
查看具体窗口(包含11085字符串的数据行)(3)输入:tasklist|findstr "8576"
查看8576号进程是谁 (也可以打开任务管理器查看)示例:
C:\WINDOWS\system32>netstat -aon|findstr "11085" TCP 0.0.0.0:11085 0.0.0.0:0 LISTENING 8576C:\WINDOWS\system32>tasklist|findstr "8576"ThunderMini.exe 8576 Console 12 40,584 KC:\WINDOWS\system32>