Windows命令行:在新的控制台窗口中执行.bat文件

时间:2018-09-11 06:46:21

标签: windows cmd windows-console

我有4个DOS批处理文件:

GoCore1.bat
GoCore2.bat
GoCore3.bat
GoCore4.bat

我想从单个.bat文件(go.bat)在其自己的控制台窗口 中启动每个bat文件。 Windows 7是操作系统。

这可能吗?如果是这样,创建一个新的控制台窗口并开始执行GoCoreX.bat的语法是什么?

感谢任何提出问题的建设性反馈意见:请在不留下建设性反馈意见的情况下投下反对票。

1 个答案:

答案 0 :(得分:1)

尝试使用go.bat中的START command

start "myWindow1" GoCore1.bat
start "myWindow2" GoCore2.bat
start "myWindow3" GoCore3.bat
start "myWindow4" GoCore4.bat

开始“标题” [/ D路径] [选项]“命令” [参数]

Key:
   title       Text for the CMD window title bar (required.)
   path        Starting directory.
   command     The command, batch file or executable program to run.
   parameters  The parameters passed to the command.