Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/batch-file/6.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181

Warning: file_get_contents(/data/phpspider/zhask/data//catemap/7/arduino/2.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Batch file 如何使批处理文件等待安装完成_Batch File_Setup.exe - Fatal编程技术网

Batch file 如何使批处理文件等待安装完成

Batch file 如何使批处理文件等待安装完成,batch-file,setup.exe,Batch File,Setup.exe,我试图将其放入一个example.bat call=blahblah.exe call=example.bat/wait blahblah.exe 但是上面的操作不会等待,只要blahblah.exe运行,它就会调用example.bat 我想在整个blahblah.exe完成后启动example.bat。谢谢您可以使用开始。如果要运行a.bat,请执行b.exe,然后在退出时运行c.bat a.bat: start /wait b.exe call c.bat

我试图将其放入一个example.bat call=blahblah.exe call=example.bat/wait blahblah.exe

但是上面的操作不会等待,只要blahblah.exe运行,它就会调用example.bat


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

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

a.bat

start /wait b.exe
call c.bat