443端口被占用无法启动解决办法(如何查找进程ID)

时间:2015-05-05 10:16:05   收藏:0   阅读:1526

摘自CSDN博客,原文地址:http://blog.csdn.net/pet8766/article/details/8186955

netstat -ano|findstr "443"         //搜索443端口占用情况,并找到进程ID
TCP 0.0.0.0:443 0.0.0.0:0 LISTENING 720            //找到PID为720
UDP 0.0.0.0:59443 *:* 7584
-----------------------------------------------
tasklist|findstr "720"                     //查找PID为720对应的进程名
QQDownload.exe 720 Console 1 56,156 K            //找到是QQ旋风占用,结束掉进程。OK

评论(0
© 2014 mamicode.com 版权所有 京ICP备13008772号-2  联系我们:gaon5@hotmail.com
迷上了代码!