批处理bat监控程序运行

通过bat监控程序运行,实现软件监听/控,比如软件异常或者出现问题,可以自动重启程序

@echo off
:begin
set Program="Bypass.exe"
tasklist -v | findstr %Program% > NUL
if ErrorLevel 1 (
echo %date%+ %time% >> log.txt
echo "not running"
d:
cd d:\Software\Tools\Bypass_1.13.92\Bypass
Bypass.exe
)
goto begin
pause

 

可以按照上图的文件名改改,然后自己保存位bat,运行就行了~!

posted @ 2020-11-18 17:39  小军递  阅读(879)  评论(0编辑  收藏  举报