使用单个批处理文件在不同的cmd提示中执行多个批处理文件

Abi*_*ash 1 windows batch-file

我有3个批处理文件one.bat,two.batthree.bat.所有三个bat文件都必须在自己的命令提示符shell中启动.所以现在我计划collect.bat在一个批处理文件中执行所有三个批处理文件.但我无法弄清楚如何才能让每一个批处理文件(one.bat,two.batthree.bat)在不同的窗口中使用运行collect.bat.有任何想法吗?提前致谢...

Ahm*_*mad 6

使用START了点.每批产品将单独启动,无需等待完成

start one.bat
start two.bat
start three.bat
Run Code Online (Sandbox Code Playgroud)


pan*_*-34 5

你最好用

start cmd /c one.bat
start cmd /c two.bat
start cmd /c three.bat
Run Code Online (Sandbox Code Playgroud)

除非你想在蝙蝠完成后保留那些窗户