开始批处理>启动exe + stop exe>批量激活

时间:2016-03-08 07:47:14

标签: batch-file

批次:

@echo off
tasklist /FI "IMAGENAME eq custom.bin" 2>NUL | find /I /N "custom.bin">NUL
if "%ERRORLEVEL%"=="0" goto mycode
goto quite
:mycode
@RD /S /Q "customfolder"
:quite
exit

现在我需要让它像标题一样一步一步地工作:

  1. 运行批处理
  2. 运行custom.bin
  3. 关闭custom.bin
  4. 现在我们的批处理知道我们关闭了custom.bin和 执行自定义文件夹和自定义文件删除有人可以给一个 手?它甚至可能是那种东西吗?

1 个答案:

答案 0 :(得分:0)

我认为你正试图做这样的事情:

@echo off
start /wait custom.bin
echo custom.bin has finished running
pause

这将启动custom.bin,并等待它关闭,然后继续运行批处理文件的其余部分