Abi*_*ash 1 windows batch-file
我有3个批处理文件one.bat
,two.bat
和three.bat
.所有三个bat文件都必须在自己的命令提示符shell中启动.所以现在我计划collect.bat
在一个批处理文件中执行所有三个批处理文件.但我无法弄清楚如何才能让每一个批处理文件(one.bat
,two.bat
和three.bat
)在不同的窗口中使用运行collect.bat
.有任何想法吗?提前致谢...
使用START
了点.每批产品将单独启动,无需等待完成
start one.bat
start two.bat
start three.bat
Run Code Online (Sandbox Code Playgroud)
你最好用
start cmd /c one.bat
start cmd /c two.bat
start cmd /c three.bat
Run Code Online (Sandbox Code Playgroud)
除非你想在蝙蝠完成后保留那些窗户