Windows系统查看端口占用的程序并杀掉进程
摘要:
# 查询端口占用, 获得进程号 netstat -aon | findstr 8081 # 查询进程对应的程序(可选) tasklist | findstr 9088 # 直接杀掉进程(/F 强制关闭 /T包括子进程) taskkill /T /F /PID 9088 阅读全文
posted @ 2021-09-03 09:11 何亦冷 阅读(144) 评论(0) 推荐(0) 编辑
2021年9月3日 #
posted @ 2021-09-03 09:11 何亦冷 阅读(144) 评论(0) 推荐(0) 编辑