windows查看端口占用

查看端口占用程序的pid

1
netstat -aon|findstr ":<port>"

查看对应pid的程序

1
tasklist|findstr "<pid>"

结束对应pid的进程

1
taskkill /T /F /PID <pid>