查看监听端口
netstat -ano
查看指定80端口是否在监听
netstat -nao|findstr "135"
查看那个程序在占用135端口
tasklist|findstr "135"
杀死进程
taskkill /f /t /im Tencentdl.exe
windows常用命令
原文:https://www.cnblogs.com/biaopei/p/9725184.html