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.
' VBScript.
Set Shell = CreateObject("WScript.Shell")
DesktopPath = Shell.SpecialFolders("Desktop")
Set link = Shell.CreateShortcut(DesktopPath & "\what it will say on the desktop.lnk")
link.Arguments = ""
link.Description = "Shorcut to ???? folder"
link.HotKey = ""
link.IconLocation = "explorer.exe,1"
link.TargetPath = "\\server\folder"
link.WindowStyle = 3
link.WorkingDirectory = "\\server\folder"
link.Save