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.
Dim WSH, AdminPassWrd, PassDlg, prog
Set WSH = WScript.CreateObject("WScript.Shell")
Set PassDlg = CreateObject("PassDlg.PasswordDialog")
PassDlg.ShowDialog "Administrator password required"
AdminPassWrd = PassDlg.Password
prog = "runas.exe /env /user:Administrator "
prog = prog & """Control %systemRoot%\system32\appwiz.cpl,System"""
WSH.Run prog,2,false
WScript.Sleep 500
WSH.Sendkeys AdminPassWrd
WSH.Sendkeys "~"
'Finish up
Set WSH = Nothing
Set PassDlg = Nothing