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
下一篇: windows IE 代理 bat
推荐阅读
-
linux和windows下的自动ftp脚本(shell bat)
-
Windows下简单的Mysql备份BAT脚本分享
-
PHP启动windows应用程序、执行bat批处理、执行cmd命令的方法(exec、system函数详解)
-
Zabbix 结合 bat 脚本实现多个应用程序状态监控的方法
-
Windows程序打包脚本[bat]的详细流程
-
Windows 2008任务计划执行bat脚本失败返回0x1的解决方法
-
使用srvany.exe将程序安装成windows服务的详细教程(附bat程序)
-
script_tool_for_windows.bat Windows 环境下的 hosts 一键部署脚本
-
Windows下通过bat获取网络连线实际名称,加强IP类设置脚本的兼容性
-
Windows系统清理QQ聊天记录、反监控QQ聊天的BAT脚本分享