查看所有端口
netstat -ano
查找指定端口
netstat -aon|findstr "8081"
查看指定PID进程
tasklist|findstr "9088"
结束进程
taskkill /T /F /PID 9088
参考
https://www.runoob.com/w3cnote/windows-finds-port-usage.html
windows查看端口占用 杀死进程
阅读 142
2022-02-10
查看所有端口
netstat -ano
查找指定端口
netstat -aon|findstr "8081"
查看指定PID进程
tasklist|findstr "9088"
结束进程
taskkill /T /F /PID 9088
参考
https://www.runoob.com/w3cnote/windows-finds-port-usage.html
相关推荐
精彩评论(0)