up vote 26 down vote favorite
9
share [g+] share [fb]

When writing a batch file to automate something on a Windows box, I've needed to pause its execution for several seconds (usually in a test/wait loop, waiting for a process to start). At the time, the best solution I could find uses ping (I kid you not) to achieve the desired effect. I've found a better write-up of it here, which describes a callable "wait.bat", implemented as follows:

@ping 127.0.0.1 -n 2 -w 1000 > nul
@ping 127.0.0.1 -n %1% -w 1000> nul

You can then include calls to wait.bat in your own batch file, passing in the number of seconds to sleep.

Apparently the Windows 2003 Resource Kit provides a Unix-like sleep command (at last!). In the meantime, for those of us still using XP, 2K or (sadly) NT, is there a better way?

Update

I've accepted ΤΖΩΤΖΙΟΥ's answer, as its the most lightweight and portable solution (the fact that Python is my language of choice may have influenced this decision :-). Many thanks to everyone who responded.

I modified his suggested sleep.py script, so that it defaults to 1 second if no arguments are passed on the command line:

import time, sys

time.sleep(float(sys.argv[1]) if len(sys.argv) > 1 else 1)
link|improve this question

75% accept rate
Pythonistas of the world, unite! – tzot Oct 3 '08 at 22:10
The 2003 server resource kit works with Windows XP (and probably with w2k) – Martin Beckett Jul 7 '09 at 14:41
Why the c# and ruby-on-rails tags? – Chowlett Mar 25 '11 at 19:30
Removed the tags as there is no reference to c# or ror in the question. – mugen kenichi Mar 25 '11 at 19:36
feedback

24 Answers

up vote 7 down vote accepted

If you have Python installed, or don't mind installing it (it has other uses too :), just create the following sleep.py script and add it somewhere in your PATH:

import time, sys

time.sleep(float(sys.argv[1]))

It will allow sub-second pauses (e.g. 1.5 sec, 0.1 etc), should you have such a need. If you want to call it as sleep rather than sleep.py, then you can add the .PY extension to your PATHEXT environment variable. In XP, you can edit it in:

My Computer → Properties (menu) → Advanced (tab) → Environment Variables (button) → System variables (frame)

link|improve this answer
feedback

The timeout command is available from Vista onwards.

c:\> timeout /?

TIMEOUT [/T] timeout [/NOBREAK]

Description:
    This utility accepts a timeout parameter to wait for the specified
    time period (in seconds) or until any key is pressed. It also
    accepts a parameter to ignore the key press.

Parameter List:
    /T        timeout       Specifies the number of seconds to wait.
                            Valid range is -1 to 99999 seconds.

    /NOBREAK                Ignore key presses and wait specified time.

    /?                      Displays this help message.

NOTE: A timeout value of -1 means to wait indefinitely for a key press.

Examples:
    TIMEOUT /?
    TIMEOUT /T 10
    TIMEOUT /T 300 /NOBREAK
    TIMEOUT /T -1
link|improve this answer
feedback

Sleep.exe is included in most DOS resource kits. If that is the case, that's the best idea.

If you don't have it, it's easily found on the Internet (I added it to my Windows XP). I assume of course that you can add executables to your box.

The windows 2003 resource kit. I guess Sleep should work regardless of your windows version

link|improve this answer
feedback

Over at Server Fault, a similar question was asked, the solution there was:

choice /d y /t 5 > nul
link|improve this answer
1  
FYI: Choice is not included in Windows XP. It was in Windows 9x, removed from XP, and added back for Vista onward. – Justin Satyr Apr 4 '11 at 21:58
I do not recommended this at all. At least in all the CHOICE versions I know, if someone hits a button while waiting, which impatient folks do sometimes, then choice will register an input, give a system beep for a bad input, and halt the countdown timer, which means it will hang there unless they push N or Y. And if they just happen to push one of those two, then the choice ends right there instead of waiting for 5. Also, this choice is using really weird Vista syntax. All the normal choice commands would instead use CHOICE /T:Y,5 > NUL for that. There is no /D flag in the old versions. – Coding With Style Jun 25 '11 at 23:00
To top it off, at least the CHOICE commands I know have different default yes/no buttons based on the language it came in, so if you happen to rely on a default [Y,N] choice instead of explicitly specifying it with /C:YN or just /C:Y, this is not going to work when someone happens to have, say, a Swedish choice command which will probably do a [J,N] by default. So this is mired in all sorts of trouble. – Coding With Style Jun 25 '11 at 23:04
@Coding Tested this in Win7, and if the user presses a button, it will beep, however it will still timeout after an additional 5 seconds after the user pressed a button. So if the user keeps pressing keys, it will never timeout. Also, in my case, when I used this, I believe that hide the console, so that the user couldn't press the button. On this system, there was no access to Python, there was no access to drop my own exe on the system (as suggested in some other answers), I was pretty limited in what I could do. So, What would you recommend? – mlsteeves Jun 28 '11 at 17:14
feedback

I faced a similar problem, but just knocked up a very short C++ console app to do the same thing. Just run MySleep.exe 1000 - perhaps easier than downloading/installing the whole resource kit?

#include <tchar.h>
#include <stdio.h>
#include "Windows.h"

int _tmain(int argc, _TCHAR* argv[])
{
    if (argc == 2)
    {
    	_tprintf(_T("Sleeping for %s ms\n"), argv[1]);
    	Sleep(_tstoi(argv[1]));		
    }
    else
    {
	    _tprintf(_T("Wrong number of arguements\n"));
    }

    return 0;
}
link|improve this answer
feedback

I know this is a very old question, but I disagree with the answers I found here.

I use the following method entirely based on Win XP capabilities to do a delay in a Batch file:

DELAY.BAT:

@ECHO OFF
REM DELAY seconds

REM GET ENDING SECOND
FOR /F "TOKENS=1-3 DELIMS=:." %%A IN ("%TIME%") DO SET /A H=%%A, M=1%%B%%100, S=1%%C%%100, ENDING=(H*60+M)*60+S+%1

REM WAIT FOR SUCH A SECOND
:WAIT
FOR /F "TOKENS=1-3 DELIMS=:." %%A IN ("%TIME%") DO SET /A H=%%A, M=1%%B%%100, S=1%%C%%100, CURRENT=(H*60+M)*60+S
IF %CURRENT% LSS %ENDING% GOTO WAIT

You may also insert the day in the calculation so the method also works when the delay interval pass over midnight.

link|improve this answer
Nice piece of work – Kev Jul 24 '11 at 11:09
feedback

You could use the Windows cscript WSH layer and this wait.js JavaScript file:

if (WScript.Arguments.Count() == 1)
    WScript.Sleep(WScript.Arguments(0)*1000);
else
    WScript.Echo("Usage: cscript wait.js seconds");
link|improve this answer
I would like to add to this that JScript is already installed in Windows 98 and above, so this solution is very compatible. :) – aikeru Nov 18 '11 at 20:09
feedback

The Resource Kit has always included this. At least since Windows 2000.

Also, the cygwin package has a sleep - plop that into your PATH and include the cygwin.dll (or whatever it's called) and way to go!

link|improve this answer
2  
Note that cygwin1.dll does not peacefully coexist with different versions of itself. You better have one and only one cygwin1.dll on your machine, or you will get weird failures. – JesperE Oct 3 '08 at 9:44
feedback

The usage of ping is good, as long as you just want to "wait for a bit". This since you are dependant on other functions underneath, like your network working and the fact that there is nothing answering on 127.0.0.1. ;-) Maybe not very likely it fails, but not impossible...

If you want to be sure that you are waiting exactly the specified time, you should use the sleep functionality (which also have the advantage that it doesn't use CPU power or wait for a network to become ready) To find an already made executable for sleep is the most convenient way. Just drop it into your Windows folder or any other part of your standard path and it is always available.

Otherwise, if you have a compiling environment you can easily make one yourself. The Sleep function is available in kernel32.dll, so you just need to use that one. :-) For VB / VBA declare the following in the beginning of your source to declare a sleep function:

private Declare Sub Sleep Lib "kernel32" Alias "Sleep" (byval dwMilliseconds as Long)

For C#:

[DllImport("kernel32.dll")]
static extern void Sleep(uint dwMilliseconds);

More about his functionality (available since Windows 2000) you'll find here: http://msdn.microsoft.com/en-us/library/ms686298(VS.85).aspx

In standard C sleep() is included in the standard library and in Microsoft's Visual Studio C the function is named Sleep(), if memory serves me. ;-) Those two takes the argument in seconds, not in milliseconds as the two previous declarations.

link|improve this answer
1  
Sleep is available in the .net framework - have a look at the thread class, e.g.: using System.Threading; .... Thread.Sleep(1000); – John Sibly Oct 3 '08 at 13:01
1  
If "ping 127.0.0.1" fails, you have more serious stuff than "sleep" to worry about - this is the loopback interface, anything RPC will probably go mad. – Piskvor Apr 4 '09 at 18:26
feedback

Just put this in your batch file where you want the wait.

@ping 127.0.0.1 -n 11 -w 1000 > null
link|improve this answer
feedback

Depending on your compatibility needs, either use ping:

ping -n <numberofseconds+1> localhost >nul 2>&1

e.g. to wait 5 seconds, use

ping -n 6 localhost >nul 2>&1

or on Windows 7 or later use timeout:

timeout 6 >nul
link|improve this answer
feedback

Using the ping method as outlined is how I have had to do it occasionally when you can't or don't want to add more executables or install any other software.

A point to make is you should be pinging something that isn't there, and using the -w so that it fails after that amount of time, not pinging something that IS there (like localhost) -n times. This allows you to handle time less than a second, and I think its slightly more accurate.

e.g.

(test that 1.1.1.1 isn't taken)

ECHO Waiting 15 seconds

PING 1.1.1.1 -n 1 -w 15000 > NUL

link|improve this answer
feedback

I have been using this C# sleep program. It might be more convenient for you if C# is your preferred language:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;

namespace sleep
{
    class Program
    {
        static void Main(string[] args)
        {
            if (args.Length == 1)
            {
                double time = Double.Parse(args[0]);
                Thread.Sleep((int)(time*1000));
            }
            else
            {
                Console.WriteLine("Usage: sleep <seconds>\nExample: sleep 10");
            }
        }
    }
}
link|improve this answer
feedback

You have a couple of options - emulate a sleep with the ping command, or download the windows resource kit which includes a sleep command. More details here: Batch file SLEEP Command

link|improve this answer
feedback

You can use ping:

ping 127.0.0.1 -n 11 -w 1000 >nul: 2>nul:

will wait 10 seconds.

The reason you have to use 11 is because the first ping goes out immediately, not after one second. The number should always be one more than the number of seconds you want to wait.

Keep in mind that the purpose of the -w is not to wait one second, it's to ensure that you wait no more than one second in the event that there are network problems. ping on it's own will send one ICMP packet per second. It's probably not required for localhost but old habits die hard.

link|improve this answer
it is not recommended to use this for critical real-time processing. because PING command is being used, it is possible that this WAIT batch file may run over a few milliseconds – Wael Dalloul Aug 20 '09 at 8:31
3  
@Wael, if you're talking about waiting on one-second boundaries, a few milliseconds will be irrelevant. And if you're using cmd.exe for realtime stuff, you deserve everything you get :-) – paxdiablo Aug 20 '09 at 8:34
-w is a timeout value. It's the number of milliseconds to wait for a reply ... not the amount of time to wait between pings. – quux Jul 29 '11 at 8:39
@quux, nowhere did I state -w was the timeout (though I admit some may infer that due to my lack of clarity), it's actually used to limit the cycle time where there are network problems which would cause each cycle to take more than its allocated second. I've added a paragraph to the end to clarify this. – paxdiablo Jul 29 '11 at 9:54
issue is that if pings return faster, you may not wait one full second between pings. so your wait loop will end faster than you thought it would – quux Aug 1 '11 at 19:42
show 1 more comment
feedback

Even more lightweight than the Python solution is a Perl one-liner.

To sleep for 7 seconds put this in the BAT script:

perl -e "sleep 7"

This solution only provides a resolution of 1 second.

If you need higher resolution then use the Time::HiRes module from CPAN. It provides usleep() which sleeps in microseconds and nanosleep() which sleeps in nanoseconds (both functions takes only integer arguments). See the StackOverflow question http://stackoverflow.com/questions/896904, "millisecond sleep in Perl" for further details.

I have used ActivePerl for many years. It is very easy to install and can be downloaded from http://downloads.activestate.com/ActivePerl/Windows/5.10/ (use the latest, build number 1005).

link|improve this answer
feedback

You need an external tool; the standard CMD.EXE can't do this. The most simple solution is probably sleep.exe from any Resource Kit.

link|improve this answer
feedback

check the following link:

Implementing the WAIT Command in a Batch File

Batch file SLEEP Command

link|improve this answer
1  
Hey, this approach is very clever :) – ATorras Aug 20 '09 at 8:30
feedback

Here's some options for batch file wait

link|improve this answer
feedback

The Microsoft download page of the Windows 2003 Resource Kit indicates that it also works for XP. I'm afraid there is no other choice but to use an 'external' utility to do the waiting: there is nothing like this built into the XP command processor.

link|improve this answer
feedback

I faced the same problem in the past, and used ping myself (with a remark above clearly documenting that I realize this is stupid :) ).

link|improve this answer
feedback

Impressed with this one:

http://www.computerhope.com/batch.htm#02

choice /n /c y /d y /t 5 >NUL

Technically you're telling the choice command to accept only y, default to y, to do so in 5 seconds, to draw no prompt, and to dump anything it does say to NUL (like null terminal in Linux).

link|improve this answer
I'll echo myself here: I do not recommended this at all. In the CHOICE versions I know, if someone hits a key while waiting, which impatient folks do sometimes, then choice will read an input, give a system beep for a bad input, and halt the countdown, so it will hang unless they push Y. And if they just happen to push Y, then the choice ends right there instead of waiting for 5. Also, this choice is using really weird Vista syntax. The normal choice commands instead use CHOICE /T:Y,5 > NUL for that. (There is no /D flag in the old versions.) And if you have Vista, use TIMEOUT instead. – Coding With Style Jun 25 '11 at 23:11
feedback

Ancient question, but since python was OK, I do have to mention: perl -e"sleep 2"

link|improve this answer
feedback

Or command line Python, for example, for 6 and a half seconds:

python -c "import time;time.sleep(6.5)"
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.