【发布时间】: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
我试图将它放入 example.bat call= blahblah.exe call= example.bat /wait blahblah.exe
但上面没有等待,它会在 blahblah.exe 运行后立即调用 example.bat。
我想在整个 blahblah.exe 完成后启动 example.bat。谢谢
【问题讨论】:
标签: batch-file setup.exe
您可以使用start。如果要运行a.bat,请执行b.exe,然后在退出时运行c.bat;
a.bat:
start /wait b.exe
call c.bat
【讨论】: