如何从第三批调用两批?

Jad*_*ias 4 windows batch-file windows-7-x64

当我的Windows批处理文件(.bat)调用其他两个BAT文件时,它会在第一个文件之后退出.

如何让它们同时运行?

mik*_*kej 7

使用 call

例如在调用批处理文件中:

call batch1.bat
call batch2.bat
Run Code Online (Sandbox Code Playgroud)

(另外,一些背景这里.)