bat编写问题

来源:百度知道 编辑:UC知道 时间:2024/07/05 07:21:35
为甚麽我在bat中写了如下内容:
D:\软件\快门\shutter王行
D:\软件\迅雷\Thunder
却只能打开一个?
怎样才能使两个程序自动按顺序打开?

用start命令
两个会一起开
--------------------------------
start "D:\软件\快门\shutter王行"
ping -n 10 127.1 >>unl
start "D:\软件\迅雷\Thunder"
开了一个10秒钟后开另一个

只写路径的话 你要关了第一个 第二个才会打开
不知道你是要一个打开之后过几秒打开第二个
还是要同时打开
可以用start

start "D:\软件\快门\shutter王行"
start "D:\软件\迅雷\Thunder"