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.
Set oApp = CreateObject("Shell.Application")
For Each oWin In oApp.Windows
If InStr(oWin.Name, "Internet") Then
Set oElements = oWin.Document.GetElementsByTagName("title")
For Each oElement In oElements
WScript.Echo oElement.innerHTML & " - " & oWin.Name
Next
Set oElements = Nothing
End If
Next
Set oApp = CreateObject("Shell.Application")
For Each oWin In oApp.Windows
WScript.Echo oWin.Name
Next