Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Windows's Snipping tool can capture the screen, but sometimes I want to capture the screen after 5 seconds, such as taking an image being displayed by the webcam. (run the script and smile at the camera, for example).

So in Ruby, I could do something like

sleep 3
system('c:/windows/system32/SnippingTool.exe')

but not all computer has Ruby, so how do I do that in a .bat file? (something that is runnable on most PC with Snipping tool).

The problem is that there is no "sleep" usable in a .bat file.

share|improve this question
possible duplicate of How to wait in a batch script – Helen Feb 6 '11 at 13:19

17 Answers

up vote 105 down vote accepted

One hack I have seen is to use the ping command to attempt to ping an invalid ip:

ping 1.1.1.1 -n 1 -w 3000 > nul

1.1.1.1 invalid IP, can never be reached.
-n 1 only attempt to connect once.
-w 3000 wait 3 seconds for reply.
nul gobble the output.

share|improve this answer
Brilliant. I've been trying to get sleep working on both Windows XP (which thinks it's in ms) and Windows 7 (which thinks it's in secs) and this gets round the problem perfectly (ms on both). Thank you! – Lunivore Jan 15 '12 at 21:54
1  
This doesn't work well for me (could be a networking issue)? When I try the above command (without the pipe to nul) I immediately get a "Destination host unreachable" from the gateway server and the ping command exits straight away. – Ian Renton Mar 27 '12 at 15:12
13  
It's cleaner and more reliable, IME, to do "ping 127.0.0.1 -n 10 > nul" - each ping waits 1s, so change the number of times to the number of seconds you wish to delay. – Cybergibbons Jun 8 '12 at 11:17
awesome thanks,just what i needed – CraftyFella Sep 12 '12 at 8:03

I'm very surprised no one has mentioned:

C:\> timeout 5
share|improve this answer
5  
'timeout' is not recognized as an internal or external command, operable program or batch file. (On my Windowx XP SP3) – RichAmberale Nov 4 '09 at 8:30
9  
it works on Win 7, but not on Win XP – 動靜能量 Nov 4 '09 at 8:34
1  
I'm fairly certain I've used it on Server 2003 (same code base as XP), so it's a wonder it's not on XP then... – asveikau Nov 4 '09 at 9:56
Because XP is not Server 2k3. Heck, it's two years older and historically (excluding NT 4) the server OSes came with some stuff that wasn't there in the workstation variant. – Јοеу Nov 4 '09 at 10:03
2  
Worked a charm for me. – Matt Dell Mar 5 '12 at 17:23
show 4 more comments

Try the Choice command. It's been around since MSDOS 6.0, and should do the trick.

Use the /T parameter to specify the timeout in seconds and the /D parameter to specify the default selection and ignore then selected choice.

The one thing that might be an issue is if the user types one of the choice characters before the timeout period elapses. A partial work-around is to obfuscate the situation -- use the /N argument to hide the list of valid choices and only have 1 character in the set of choices so it will be less likely that the user will type a valid choice before the timeout expires.

Below is the help text on Windows Vista. I think it is the same on XP, but look at the help text on an XP computer to verify.

C:\>CHOICE /?

CHOICE [/C choices] [/N] [/CS] [/T timeout /D choice] [/M text]

Description:
    This tool allows users to select one item from a list
    of choices and returns the index of the selected choice.

Parameter List:
   /C    choices       Specifies the list of choices to be created.
                       Default list is "YN".

   /N                  Hides the list of choices in the prompt.
                       The message before the prompt is displayed
                       and the choices are still enabled.

   /CS                 Enables case-sensitive choices to be selected.
                       By default, the utility is case-insensitive.

   /T    timeout       The number of seconds to pause before a default
                       choice is made. Acceptable values are from 0 to
                       9999. If 0 is specified, there will be no pause
                       and the default choice is selected.

   /D    choice        Specifies the default choice after nnnn seconds.
                       Character must be in the set of choices specified
                       by /C option and must also specify nnnn with /T.

   /M    text          Specifies the message to be displayed before
                       the prompt. If not specified, the utility
                       displays only a prompt.

   /?                  Displays this help message.

   NOTE:
   The ERRORLEVEL environment variable is set to the index of the
   key that was selected from the set of choices. The first choice
   listed returns a value of 1, the second a value of 2, and so on.
   If the user presses a key that is not a valid choice, the tool
   sounds a warning beep. If tool detects an error condition,
   it returns an ERRORLEVEL value of 255. If the user presses
   CTRL+BREAK or CTRL+C, the tool returns an ERRORLEVEL value
   of 0. When you use ERRORLEVEL parameters in a batch program, list
   them in decreasing order.

Examples:
   CHOICE /?
   CHOICE /C YNC /M "Press Y for Yes, N for No or C for Cancel."
   CHOICE /T 10 /C ync /CS /D y
   CHOICE /C ab /M "Select a for option 1 and b for option 2."
   CHOICE /C ab /N /M "Select a for option 1 and b for option 2."
share|improve this answer
3  
it is not on XP either... – 動靜能量 Jun 3 '10 at 7:04
1  
that's interesting. This site computerhope.com/choicehl.htm states that choice is available on Windows 95, Windows 98, Windows Vista and Windows 7, but not Windows XP. I bet that MS got a lot of complaints about taking it of XP, so put they put it back into Vista. – Adam Porad Jun 4 '10 at 19:40
rem *** HACK ALERT: Sleep for 5 seconds ***
ping -n 5 127.0.0.1 > nul
rem ***************************************
share|improve this answer
5  
This should be -n 6. Otherwise you just wait 4 seconds. Remember that ping waits 1 second between pings, so you always have to specify one more try than you need. – Јοеу Nov 4 '09 at 10:01

You can use vbs: myscript.vbs:

set wsobject = wscript.createobject("wscript.shell")

do while 1=1
  wsobject.run "SnippingTool.exe",0,TRUE
  wscript.sleep 3000
loop

batch file:

cscript myscript.vbs %1
share|improve this answer
why the %1? you didn't put any place for arguments in the code. I use this: sleep.vbs: wscript.sleep wscript.arguments(1) – Jeremy Dec 19 '12 at 19:05

By using "ping" the -n will determine the timeout only when there is no response to the ping. Check out this post about implementing DELAY as a batch file.

DELAY command implemented as a Batch File

I could just copy-paste the important bits, but the whole post is quite useful.

share|improve this answer

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.

share|improve this answer

Can't we do waitfor /T 180?

The waitfor command should be there in Windows OS after Win95

In the past I've downloaded a executable named sleep that will work on the command line after you put it in your path.

For example: sleep shutdown -r -f /m \\yourmachine neah shutdown has -t option

but this form asked me to have at least 30 characters...

share|improve this answer
Wasn't present on my XP Pro SP3 machine, but it was on Win7 Ultimate machine. – Josh Heitzman Nov 25 '12 at 22:36
waitfor is for waiting for a signal. Not sure how to use it, but it doesn't seem to fit the bill. – jfritz42 Jan 31 at 20:35
   
Not what I was looking for here, but thanks for this one anyway - it'll come in useful later. – Kev Feb 14 at 10:45

I was trying to do this from within an msbuild task, and choice and timeout both did not work due to I/O redirection.

I ended up using sleep.exe from http://sourceforge.net/projects/unxutils, which is nice because it doesn't require any install and it's tiny.


Trying with choice:

<Target Name="TestCmd">
  <Exec Command="choice /C YN /D Y /t 5 " />
</Target>

Results in:

TestCmd:
  choice /C YN /D Y /t 5

EXEC : error : The file is either empty or does not contain the valid choices. [test.proj]
  [Y,N]?
C:\test.proj(5,9): error MSB3073: The command "choice /C YN /D Y /t 5 " exited with code 255.

Trying with timeout:

<Target Name="TestCmd">
  <Exec Command="timeout /t 5 " />
</Target>

Results in:

TestCmd:
  timeout /t 5
EXEC : error : Input redirection is not supported, exiting the process immediately. [test.proj]
C:\test.proj(5,7): error MSB3073: The command "timeout /t 5 " exited with code 1.

Aside:

I am actually using <Exec Command="sleep 2 & dbghost.exe" /> because I am executing dbghost.exe multiple times in parallel and it creates temp files/databases based on the current epoch time in seconds - which of course means if you start multiple instances, each uses the same temp name. I was originally trying to use MSBuild Extension Pack Thread.Sleep command, but it seems that (usually) it was running the sleep task fine, but then starting the <exec> task in all threads at the same time, and of course dbghost.exe would fail with conflicts. So far, using sleep.exe seems to be more reliable.

share|improve this answer

THe easiest Way I did this

Download the Sleep.exe here http://www.sleepcmd.com/

The .exe file should be in the same folder as the program you wrote!

share|improve this answer
if downloading an exe was the right answer, sleep.exe from the ms rk would be a better choice. And putting it in the path. – Jeremy Dec 19 '12 at 19:10

An improvement of the code proposed by the user Aacini, It has resolution of hundredths of a second and does not fail when the time reaches 23:59:59,99:

for /f "tokens=1,2,3,4 delims=:," %%A in ("%TIME%") do set /a HH=%%A, MM=1%%B-100, SS=1%%C-100, CC=1%%D-100, TBASE=((HH*60+MM)*60+SS)*100+CC

:: Example delay 1 seg.
set /a TFIN=%TBASE%+100

:ESPERAR
for /f "tokens=1,2,3,4 delims=:," %%A in ("%TIME%") do set /a HH=%%A, MM=1%%B-100, SS=1%%C-100, CC=1%%D-100, TACTUAL=((HH*60+MM)*60+SS)*100+CC

if %TACTUAL% lss %TBASE% set /a TACTUAL=%TBASE%+%TACTUAL%
if %TACTUAL% lss %TFIN% goto ESPERAR
share|improve this answer

I think the following command can help:

pause 5

The syntax of the pause command is: pause d \\where d represents the duration in seconds

I am using Windows 7 (32 bit), but I don't know about the others.

share|improve this answer
On WinXP is does not work like that. It waits for infinity, ignoring the argument. – dma_k Apr 4 at 16:04

If you have an appropriate version of Windows and the Windows Server 2003 Resource Kit Tools, it includes a sleep command for batch programs. More at: http://malektips.com/xp_dos_0002.html

share|improve this answer

Well this works if you have choice or ping.

@echo off
echo.
if "%1"=="" goto askq
if "%1"=="/?" goto help
if /i "%1"=="/h" goto help
if %1 GTR 0 if %1 LEQ 9999 if /i "%2"=="/q" set ans1=%1& goto quiet
if %1 GTR 0 if %1 LEQ 9999 set ans1=%1& goto breakout
if %1 LEQ 0 echo %1 is not a valid number & goto help
if not "%1"=="" echo.&echo "%1" is a bad parameter & goto help
goto end

:help
echo SLEEP runs interactively (by itself) or with parameters (sleep # /q )
echo where # is in seconds, ranges from 1 - 9999
echo Use optional parameter /q to suppress standard output 
echo or type /h or /? for this help file
echo.
goto end

:askq
set /p ans1=How many seconds to sleep? ^<1-9999^> 
echo.
if "%ans1%"=="" goto askq
if %ans1% GTR 0 if %ans1% LEQ 9999 goto breakout
goto askq

:quiet
choice /n /t %ans1% /d n > nul
if errorlevel 1 ping 1.1.1.1 -n 1 -w %ans1%000 > nul
goto end

:breakout
choice /n /t %ans1% /d n > nul
if errorlevel 1 ping 1.1.1.1 -n 1 -w %ans1%000 > nul
echo Slept %ans1% second^(s^)
echo.

:end

just name it sleep.cmd or sleep.bat and run it

share|improve this answer

Sleep 10

next prompt will be executed after 10 seconds.

share|improve this answer
sleep — command not found. Are we speaking of the same OS? – Martin Feb 5 at 14:45

I made this it is working and show time left in second if You wanna to use add to bat:

call wait 10

working I tested

listing of wait.bat it must be in working directory or windir/system32/

@echo off

set SW=00

set SW2=00

set /a Sec=%1-1

set il=00
@echo Wait %1 second
for /f "tokens=1,2,3,4 delims=:," %%A in ("%TIME%") do set /a HH=%%A, MM=1%%B-100, SS=1%%C-100, CC=1%%D-100, TBASE=((HH*60+MM)*60+SS)*100+CC, SW=CC 

set /a TFIN=%TBASE%+%100

:ESPERAR
for /f "tokens=1,2,3,4 delims=:," %%A in ("%TIME%") do set /a HH=%%A, MM=1%%B-100, SS=1%%C-100, 

CC=1%%D-100, TACTUAL=((HH*60+MM)*60+SS)*100+CC,  SW2=CC


if %SW2% neq %SW% goto notype
if %il%==0 (echo Left %Sec% second & set /a Sec=sec-1 & set /a il=il+1)
goto no0
:notype
set /a il=0
:no0

if %TACTUAL% lss %TBASE% set /a TACTUAL=%TBASE%+%TACTUAL%
if %TACTUAL% lss %TFIN% goto ESPERAR
share|improve this answer

On newer Windows OS versions you can use the command

sleep /w2000

in a DOS script (.cmd or .bat) to wait for 2s (2000 ms - substitute the time in ms you need). Be careful to include the /w argument - without it the whole computer is put to sleep! You can use -m instead of /m if you wish and optionally a colon (:) between the w and the number.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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