如何在批处理文件中执行另一行代码之前等待一段时间

时间:2013-07-05 22:37:46

标签: time batch-file wait execute

这就是事情,基本上我需要在LineOfCode1执行之前执行LineOfCode1之后传递一分钟。有任何想法吗?任何帮助都非常感谢。 :)

2 个答案:

答案 0 :(得分:2)

从提示符开始,尝试

timeout /?

答案 1 :(得分:1)

如果您的操作系统没有timeout.exe

,您也可以使用PING延迟
@echo off
start OUTLOOK.EXE 
ping -n 60 localhost >nul
start "" "C:\Documents and Settings\gmoran\My Documents\Downloads\USAP Phone Client.application" 
start "" "C:\Documents and Settings\gmoran\Desktop\Desktop\npp.6.3.3.bin\notepad++.exe"