有人可以帮我解决这个问题吗?
如何运行批处理文件,以便在停止时自动运行 .exe 文件?
答案1
您可以运行如下所示的 inf 循环批处理来不断检查:
@echo off
:start
cls
tasklist | findstr "theexe"
if %ERRORLEVEL% == 1 goto theexe
if %ERRORLEVEL% == 0 goto start
:theexe
cls
start /d "path" the.exe
goto start
这将不断检查是否theexe
正在运行,如果未运行则运行。
感谢 Psycogeek 提供的简化版本
@echo off
:start
start /d "path" /w the.exe
goto start