要求: - 我正在尝试使用以下批处理脚本
自动执行此任务任务: -
启动DOORS应用程序 3分钟后关闭它, 重新启动应用程序
注意: - 我想要运行相同的任务5次。
SCRIPT我正在运行如下,它确实启动了应用程序,但没有关闭它。请指出。我在这个脚本中做了什么吗
set counter=0
:loop
start "Hey" "C:\Program Files (x86)\IBM\Rational\DOORS\9.3\bin\doors.exe"
timeout /t 180 >null
taskkill /f /im "doors.exe*32" >nul
timeout /t 7 >null
SET /A counter=%counter%+1
if %counter% GTR 5
(GOTO exit) else (GOTO loop)
:exit
exit `