Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
surl="[URL unfurl="true"]www.google.com"[/URL]
set oie=createobject("internetexplorer.application")
oie.navigate "about:blank"
do while oie.readystate<>4 : wscript.sleep 50 : loop
dt_start=timer
oie.navigate surl
'sleep gives rise to intrinsic error magin in x milliseconds
do while oie.readystate<>4 : wscript.sleep 10 : loop
dt_end=timer
oie.quit
set oie=nothing
wscript.echo "Loading " & surl & " takes : " & formatnumber(dt_end-dt_start,3) & " sec"