如何并行运行批处理文件中的指令/命令?

时间:2014-03-21 04:31:23

标签: windows parallel-processing cmd batch-processing

如何在批处理文件中并行运行指令/命令?

批处理文件内的内容:每行调用一个进程

E.g。

StartMyDay.Bat

call devenv.exe
call chrome.exe
call communicator.exe
call VirtualBox.exe

1 个答案:

答案 0 :(得分:1)

使用start命令,但如果需要,请添加文件路径。

start "" devenv.exe
start "" chrome.exe
start "" communicator.exe
start "" VirtualBox.exe