如何在批处理文件中并行运行指令/命令?
批处理文件内的内容:每行调用一个进程
E.g。
StartMyDay.Bat
call devenv.exe
call chrome.exe
call communicator.exe
call VirtualBox.exe
答案 0 :(得分:1)
使用start
命令,但如果需要,请添加文件路径。
start "" devenv.exe
start "" chrome.exe
start "" communicator.exe
start "" VirtualBox.exe