【问题标题】:How to make a batch file wait until setup finished如何使批处理文件等到设置完成
【发布时间】:2012-10-14 22:52:24
【问题描述】:

我试图将它放入 example.bat call= blahblah.exe call= example.bat /wait blahblah.exe

但上面没有等待,它会在 blahblah.exe 运行后立即调用 example.bat。

我想在整个 blahblah.exe 完成后启动 example.bat。谢谢

【问题讨论】:

    标签: batch-file setup.exe


    【解决方案1】:

    您可以使用start。如果要运行a.bat,请执行b.exe,然后在退出时运行c.bat

    a.bat

    start /wait b.exe
    call c.bat
    

    【讨论】:

      猜你喜欢
      • 2022-11-16
      • 2011-02-04
      • 1970-01-01
      • 2012-07-19
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多