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("Shell.Application")
Set objFolder = objShell.Namespace("C:\Temp")
Set objFolderItem = objFolder.ParseName("Athena.lnk")
[COLOR=#CC0000]set colVerbs = objFolderItem.verbs
for each objVerb in colVerbs
if (replace(objVerb.Name, "&", "") = "Pin to Start Menu") then objVerb.doIt
next[/color]