使批处理文件等待另一个批处理文件
Make the batch file wait for another batch file
如何让批处理文件在进入第二行之前等待第一行命令(执行另一个批处理文件)?
批处理文件执行第一行命令时,执行需要时间。但是批处理文件进入第二行命令而不等待第一行完成。
@echo off
"MyOtherBatFile1.bat" "MyArgs1"
echo wait until above batch file is fully executed.
"MyOtherBatFile2.bat" "MyArgs2"
如何解决这个问题?
使用 Call
启动 MyOtherBatFile*.bat 批处理文件。请参阅 call /?
了解正确的语法。
如何让批处理文件在进入第二行之前等待第一行命令(执行另一个批处理文件)?
批处理文件执行第一行命令时,执行需要时间。但是批处理文件进入第二行命令而不等待第一行完成。
@echo off
"MyOtherBatFile1.bat" "MyArgs1"
echo wait until above batch file is fully executed.
"MyOtherBatFile2.bat" "MyArgs2"
如何解决这个问题?
使用 Call
启动 MyOtherBatFile*.bat 批处理文件。请参阅 call /?
了解正确的语法。