How do I get a windows batch script to wait a few seconds? sleep and wait don't seem to work (unrecognized command).
|
|
|||
|
|
|
you can try
where XXX is the number of seconds to wait, plus one |
|||||||||||||||
|
|
I don't know why those commands are not working for you, but you can also try timeout
|
|||||||||
|
|
|||||||||
|
|
To wait 10 seconds:
|
|||
|
Microsoft has a sleep function you can call directly.
You can just say sleep 1 for example to sleep for 1 second in your batch script. IMO Ping is a bit of a hack for this use case. |
|||||||||
|
|
I rely on jscript. I have a jscript file like this:
And inside a batch file I run it with cscript (usually it is
|
|||
|
|
|
The Windows 2003 Resource Kit has a If you ever move up to Powershell, you can use:
Or something like that. |
|||
|
|
|
for a pure cmd script, you can use this piece of code that returns the current time in hundreths of seconds.
You may then use it in a wait loop like this.
and putting all pieces together
for a more detailed description of the commands used here, check |
|||
|
|
|
RJLsoftware has a small utility called DelayExec.exe. With this you can execute a delayed start of any program in batches and Windows registry (most useful in ...Windows/.../Run registry). Usage example:
or as a sleep command:
|
||||
|
|
|
Personally I use perl
for a 10-second wait. You will have to install it, e.g. from ActiveState, but it's one of those things I install anyway. Alternatively you can install a sleep command from GnuWin32. |
|||||||
|
|
Download sleep.exe here: http://www.gammadyne.com/cmdline.htm#sleep so you can call it in your batch script. |
|||
|
|
|
Heh windows is uhm... interesting. This works:
|
|||||||
|
