Category Archives: VBScript

VBScript : Find script execution time

Using the script below you can find how much time it took to execute your VBScript code. Dim startTime startTime = Now ‘execute your code here endTime = Now MsgBox("Time taken to execute code : " & DateDiff("s",startTime,endTime)&" seconds") You … Continue reading

Posted in VBScript | Tagged , | Leave a comment