码迷,mamicode.com
首页 > 其他好文 > 详细

批处理文件备忘

时间:2021-06-05 17:37:23      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:最小   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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!