从批处理脚本调用批处理脚本而不暂停父脚本的执行

时间:2013-01-30 09:19:12

标签: batch-file

我想在特殊情况下从batch1脚本调用batch2脚本,但不希望等待父batch1脚本等待batch2的完成。 当batch2以并行方式运行时,希望batch1移动到下一个命令。

3 个答案:

答案 0 :(得分:2)

NT shell命令START会将批处理文件传递给自己的Window进行执行,并立即进入下一行。

    start 1.bat
    start 2.bat

答案 1 :(得分:0)

您可以像这样使用start

echo batch1 command
start batch2.bat
echo batch1 carries on whilst batch2 runs at the same time

答案 2 :(得分:0)

启动命令在另一个窗口中启动第二个批处理文件,并且两个文件并行运行

@echo off
::This is the second batch file that runs in parallel with this file
start batch_file.bat