赞
踩
前日写了一个一键启动多个服务的脚本文件(windows11)的脚本,用了两天发现,应该再写一个关闭脚本,提高工作效率。
直接上脚本代码:
- @echo off
- reg add HKEY_CURRENT_USER\Console /v QuickEdit /t REG_DWORD /d 00000000 /f
- :关闭jar服务,已知端口名称
- set port1=8080
- for /f "tokens=1-5" %%i in ('netstat -ano^|findstr ":%port1%"') do taskkill /pid %%m -t -f
-
- set port2=8088
- for /f "tokens=1-5" %%i in ('netstat -ano^|findstr ":%port2%"') do taskkill /pid %%m -t -f
-
- ::关闭C++其他服务,已知exe名称
- taskkill /f /im elseServer1.exe
- taskkill /f /im elseServer2.exe
-
-
- ::关闭运行的cmd窗口
- ::taskkill /f /im cmd.exe
- exit
脚本中::关闭运行的cmd窗口的语句注释掉了,需要使用再放开。
网上很多前辈提供了直接杀死java的做法,这里不建议这么操作,以免误杀其他进程。
参照:https://blog.csdn.net/qq_46092061/article/details/119983907
赞
踩
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。