@echo off
set port=50001
for /f "tokens=1-5" %%i in ('netstat -ano^|findstr ":%port%"') do taskkill /f /pid %%m
win根据端口号关闭进程bat
最新推荐文章于 2024-09-13 10:38:20 发布
这段内容涉及Windows系统管理,通过`@echo off`启动批处理脚本,设置变量`set port=50001`,然后使用`for /f`循环解析`netstat -ano`命令的输出,查找包含指定端口`%port%`的行,并利用`findstr`过滤,最后用`taskkill /f /pid`根据找到的进程ID强制结束相关进程。
摘要由CSDN通过智能技术生成