通过cmd命令查看某个端口的进程pid和并关闭该进程的操作

来源:互联网 发布:3万元开店淘宝理财 编辑:程序博客网 时间:2024/04/29 00:23

1、查看某个进程操作:
netstat -aon|findstr xxx (xxx端口号)
2、关闭该进程:
taskkill -f -pid aaa(aaa为该端口的进程pid号)

阅读全文
0 0