码迷,mamicode.com
首页 > Windows程序 > 详细

查看windows系统中监听端口的程序

时间:2017-05-04 14:45:57      阅读:379      评论:0      收藏:0      [点我收藏+]

标签:foreign   tin   使用   程序   window   prot   ons   tcp   stat   

netstat -aon | findstr 80
Proto Local Address Foreign Address State PID
==== ============ ============== ========== ======
TCP 0.0.0.0:80 0.0.0.0:0 LISTENING 1688
可以看出80端口被进程号为1688的程序占用.
tasklist | findstr 1688
图像名 PID 会话名 会话# 内存使用
========================= ====== ================ ======== ============
inetinfo.exe 1688 Console 0 2,800 K
很明显,是inetinfo占用了80端口;inetinfo.exe主要用于支持微软Windows IIS网络服务的除错,这个程序对你系统的正常运行是非常重要的.
taskkill /pid 1688 /F
成功: 已终止 PID 为 1688 的进程。

查看windows系统中监听端口的程序

标签:foreign   tin   使用   程序   window   prot   ons   tcp   stat   

原文地址:http://www.cnblogs.com/gipagod/p/6806693.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!