How do I get a windows batch script to wait a few seconds? sleep and wait don't seem to work (unrecognized command).

link|improve this question

feedback

12 Answers

up vote 28 down vote accepted

you can try

ping -n XXX 127.0.0.1 >nul

where XXX is the number of seconds to wait, plus one

link|improve this answer
Nice little hack – Richard J. Ross III Nov 30 '10 at 18:17
1  
Clay Calvert provides an explanation of this technique. Note that -n is used to indicate the number of requests. ping waits one second by default for each reply even if it arrives in less time. – Jaime Soto Nov 30 '10 at 18:27
Nice one, this one! :) – GolezTrol Nov 30 '10 at 18:45
remember you need to add one to the number of seconds, because ping doesn't wait before the first request. – lunixbochs Mar 21 '11 at 9:55
Haha, so simple and yet so genius :-) Exactly what I was looking for. +1 – Simon Apr 13 at 21:19
feedback

I don't know why those commands are not working for you, but you can also try timeout

timeout <delay in seconds>
link|improve this answer
i have plain windows XP install. i think "sleep" is an addition you have to install. timeout works great, though, thanks! – Claudiu Nov 30 '10 at 18:21
Ooh! I didn't know about timeout. Unfortunately it isn't available in Windows 2000, although that probably isn't a problem nowadays. If it is, choice will work on previous versions too (even in DOS). – GolezTrol Nov 30 '10 at 18:23
I haven't used this command - I just found it in ss64. You may also want to take a look at lukuluku's solution. – Jaime Soto Nov 30 '10 at 18:32
feedback

To wait 10 seconds:

choice /T 10 /C X /D X /N
link|improve this answer
i'll use this with > NUL to suppress all output. – Claudiu Nov 30 '10 at 18:52
woah actually i have neither timeout nor choice on this install of xp i'm working with... really weird. ping it is. – Claudiu Nov 30 '10 at 18:55
feedback
timeout /t 10 /nobreak > NUL
link|improve this answer
feedback

The Windows 2003 Resource Kit has a sleep batch file.

If you ever move up to Powershell, you can use:

Start-Sleep -s <time to sleep>

Or something like that.

link|improve this answer
feedback

for a pure cmd script, you can use this piece of code that returns the current time in hundreths of seconds.

:gettime
set hh=%time:~0,2%
set mm=%time:~3,2%
set ss=%time:~6,2%
set cc=%time:~-2%
set /A %1=hh*360000+mm*6000+ss*100+cc
goto :eof

You may then use it in a wait loop like this.

:wait
call :gettime wait0
:w2
call :gettime wait1
set /A waitt = wait1-wait0
if !waitt! lss %1 goto :w2
goto :eof

and putting all pieces together

@echo off
setlocal enableextensions enabledelayedexpansion

call :gettime t1
echo %t1%
call :wait %1
call :gettime t2
echo %t2%
set /A tt = (t2-t1)/100
echo %tt%
goto :eof

:wait
call :gettime wait0
:w2
call :gettime wait1
set /A waitt = wait1-wait0
if !waitt! lss %1 goto :w2
goto :eof

:gettime 
set hh=%time:~0,2%
set mm=%time:~3,2%
set ss=%time:~6,2%
set cc=%time:~-2%
set /A %1=hh*360000+mm*6000+ss*100+cc
goto :eof

for a more detailed description of the commands used here, check HELP SET and HELP CALL information.

link|improve this answer
feedback

I rely on jscript.

I have a jscript file like this:

// this is sleep.js
WScript.Sleep( WScript.Arguments( 0 ) );

And inside a batch file I run it with cscript (usually it is %SystemRoot%\system32\cscript.exe)

rem this is the calling inside a bat file to wait for 5 seconds
cscript /nologo sleep.js 5000
link|improve this answer
feedback

Microsoft has a sleep function you can call directly.

    Usage:  sleep      time-to-sleep-in-seconds
            sleep [-m] time-to-sleep-in-milliseconds
            sleep [-c] commited-memory ratio (1%-100%)

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.

link|improve this answer
3  
"C:\Documents and Settings\User>sleep 'sleep' is not recognized as an internal or external command, operable program or batch file." Windows is a bit of a hack for this use case.. lol – Claudiu Aug 4 '11 at 15:37
feedback

Personally I use perl

perl -e "sleep 10;"

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.

link|improve this answer
ah it isn't one of those things I install =P. i don't even want to install a "sleep.exe" utility, so this is a bit much. – Claudiu Nov 30 '10 at 18:19
Ruby would work too: ruby -e "sleep 10" -- and it's one character less :) – Roy Tinker Oct 18 '11 at 19:19
feedback

Download sleep.exe here: http://www.gammadyne.com/cmdline.htm#sleep so you can call it in your batch script.

link|improve this answer
feedback

Heh windows is uhm... interesting. This works:

choice /T 1 /d y > NUL

choice presents a prompt asking you yes or no. /d y makes it choose yes. /t 1 makes it wait a second before typing it. > NUL squashes output.

link|improve this answer
4  
Yeah, but you need to have a Windows that asks Yes or No. On my Dutch Windows, it asks Ja or Nee, so the Y won't work. Thats why I specified the exact choices in my answer above. And you can just add /N to prevent the prompt to be displayed. – GolezTrol Nov 30 '10 at 18:38
@GolezTrol: still need the "> NUL" to supress the "X" from displaying. ah and I didn't realize the importance of "/C" , the example i found online had it – Claudiu Nov 30 '10 at 18:52
feedback

i just wrote my own sleep which called the Sleep API function

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.