Category: VBScript

  • WScript Sleep- Exercise Desktop Remainder

    Introduction – WScript.Sleep   WScript.Sleep Suspend the execution of the current script for the specified number of milliseconds. Syntax: WScript.Sleep Time Arguments: Time is the delay in milliseconds. Example:                                               WScript.Sleep (10000) WScript.Echo (“10 Seconds have passed”) A script can force itself to pause by calling the WScript Sleep method. The Sleep method accepts a single…