标签:最小 nbsp 调用 好用 off echo start 最小化 批处理
在一个批处理文件中调用其他批处理或可执行文件,有两种方式。
第一种 使用call
1.bat需要调用2.bat和3.bat
@echo off call 2.bat call 3.bat
这种写法在实际执行时,首先运行2.bat,执行完后才会继续执行3.bat
第二种 使用start
1.bat需要调用2.bat和3.bat、4.exe
@echo off start 2.bat start 3.bat start 4.exe
会同时执行三个文件,start比较好用的几个参数简单记录一下
/D 用来指定需要执行文件的路径
start /D "D:/test/test" 1.bat
添加执行窗口的标题
start “test” 1.bat
最小化执行
start 1.bat /MIN
最大化执行
start 1.bat /MAX
标签:最小 nbsp 调用 好用 off echo start 最小化 批处理
原文地址:https://www.cnblogs.com/wx2017/p/14850742.html