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.
