windows 杀死端口占用进程
时间:2021-02-06 15:54:08
收藏:0
阅读:31
windows 杀死端口占用进程
查找使用8080端口的进程
netstat -ano |findstr "8080"
杀死该进程
tasklist |findstr "8504"
原文:https://www.cnblogs.com/Zhusi/p/14381228.html
评论(0)