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.
RemotePC = "<PC Name>"
RemoteScript = "<Path to local script>"
Dim Controller, RemoteScript
Set Controller = wScript.CreateObject("WSHController")
Set RemoteScript = Controller.createscript(RemoteScript, RemotePC)
WScript.ConnectObject RemoteScript, "remote_"
RemoteScript.Execute
do while RemoteScript.Status <> 2
WScript.Sleep 100
loop