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.
Option Explicit
Dim oIE, oDoc
Set oIE = createobject("internetexplorer.application")
oIE.Navigate("[URL unfurl="true"]www.google.com")[/URL]
Do While oIE.Busy
WScript.Sleep 200
Loop
oIE.Visible = False
Set oDoc = oIE.Document
WScript.Echo oDoc.documentElement.InnerHTML
oIE.Quit