执行批处理文件另一个批处理文件完成后

执行批处理文件另一个批处理文件完成后

本文介绍了执行批处理文件另一个批处理文件完成后,的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

可能重复:结果
  后

我有一个批处理文件,协调其他两个批处理文件的活动。我怎样才能使它执行第二批文件的第一个bat文件执行完毕后,才(执行顺序)。如果第一个批处理文件成功与否执行我不在乎。

I have a batch file coordinating the activity of two other batch file. How can I make it execute the second batch file only after the first bat file finishes execution (execute the sequentially). I do not care if the first batch file executes successfully or not.

推荐答案

使用继续第一的执行文件,如:

Use call to continue the execution of the first file, like:

echo batch controller
call batch1.bat
call batch2.bat
echo batch controller running again

这篇关于执行批处理文件另一个批处理文件完成后,的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-15 08:21