vote up 1 vote down star
1

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.

flag

25% accept rate

5 Answers

vote up 3 vote down

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
link|flag
vote up 4 vote down

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.

link|flag
vote up 2 vote down
rem *** HACK ALERT: Sleep for 5 seconds ***
ping -n 5 127.0.0.1 > nul
rem ***************************************
link|flag
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. – Johannes Rössel Nov 4 at 10:01
vote up 0 vote down

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.

link|flag
vote up 1 vote down

I'm very surprised no one has mentioned:

C:\> timeout 5
link|flag
'timeout' is not recognized as an internal or external command, operable program or batch file. (On my Windowx XP SP3) – RichAmberale Nov 4 at 8:30
it works on Win 7, but not on Win XP – Jian Lin Nov 4 at 8:34
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 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. – Johannes Rössel Nov 4 at 10:03

Your Answer

Get an OpenID
or

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