Hey All,
I need to modify the length of this timer loop for this script i found
and need some feedback on if I am reading this timer loop correctly.
Do While intCounter < 3600
If objFso.FileExists(SEPExec) Then
logResults = logMessage("installSAV", "Installation of SEP
Completed")
intCounter = 3700
Else
Wscript.sleep 50
intCounter = intCounter + 1
end If
Loop
I need to basically know what is the max time in seconds this loop is
running before it goes on.
Is it 180 seconds?
If I wanted to increase it to 240 seconds can I just change the
wscript.sleep 50 to wscript.sleep 67?
Thanks for any assistance.
Clay