欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

windows的bat脚本保活程序

程序员文章站 2022-05-08 19:15:52
...

开机自启可以通过打包软件注册到Windows开机自启项.

脚本设置为开机自启后,检测程序是否存在,不存在则启动,适用于xp,win7,win10. 

脚本循环检测程序是否存在不存在则启动.实现程序的崩溃启动.

脚本放在有应用程序同级目录.

pushd %~dp0
if "%1" == "h" goto begin 
mshta vbscript:createobject("wscript.shell").run("%~nx0 h",0)(window.close)&&exit 
:begin 
:start
	tasklist | find /i "your_app.exe"  >nul 2>nul && goto AppExist || goto AppDontExist
	:AppExist
	echo exist
	ping 127.0.0.1 -n 10 >nul
	:AppDontExist
	echo does not exist
	start your_app.exe
	ping 127.0.0.1 -n 20 >nul
goto start