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.
On Error Resume Next
Dim WSHShell,
Set WSHShell = CreateObject("WScript.Shell")
'wait 1000 milliseconds
wscript.sleep 1000
Set MyObj=CreateObject("WScript.Shell")
MyObj.Run "\\server\share\program.exe"
set WSHSHell = Nothing
'Quit the Script
wscript.quit
On Error Resume Next
Dim WSHShell
Set WSHShell = CreateObject("WScript.Shell")
'wait 1000 milliseconds
wscript.sleep 1000
Set MyObj=CreateObject("WScript.Shell")
MyObj.Run "C:\Progra~1\Doc-it\Doc-ItStart.exe"
set WSHSHell = Nothing
'Quit the Script
wscript.quit