How to set delay in vbscript?
WScript.Sleep(100) does not work on Windows XP, Vista.
WScript.Sleep(100)
Time of Sleep Function is in milliseconds (ms)
if you want 3 minutes, thats the way to do it:
WScript.Sleep(1000 * 60 * 3)