How to set delay in vbscript?
WScript.Sleep(100) does not work on Windows XP, Vista.
WScript.Sleep(100)
The following line will make your script to sleep for 5 mins.
WScript.Sleep 5*60*1000
Note that the value passed to sleep call is in milli seconds.