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 objShell = CreateObject("WScript.Shell")
strFolder = "C:\Documents and Settings\username\Desktop"
Set objShortCut = objShell.CreateShortcut(strFolder & _
"\myaccess.lnk")
objShortCut.TargetPath = "C:\mypath\myaccess.mdb"
objShortCut.Description = "Open my access"
objShortCut.HotKey = "Ctrl+Shift+N"
objShortCut.Save