windows 下查看进程占用

//查找出占用8086端口进程的ID 
netstat -nao | findstr8086 
 
//本机输出效果为: 
  TCP   0.0.0.0:8086          0.0.0.0:0             LISTENING      804 
//很显然,进程ID是804 
 
//找出ID为804的进程名 
tasklist | find804 
 
//本机输出效果为: 
emule.exe                     804Console                   1    82,068K 
 
//哈哈,原来 是emule占用了我的8086端口。

你可能感兴趣的:(windows 下查看进程占用)