1、
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
2、
tasklist|findstr 720 //查找PID为720对应的进程名
QQDownload.exe 720 Console 1 56,156 K //结束掉进程。OK