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 objNetwork = CreateObject("WScript.Network")
objNetwork.MapNetworkDrive "P:", "\\server\share"
set objFSO = CreateObject("Scripting.FileSystemObject")
objFSO.CopyFile "C:\source\file.txt", "D:\destination\file.txt"
strShortcutFile = "c:\Documents and Settings\All Users\Desktop\SomeName.lnk"
set objLink = objShell.CreateShortcut(strShortcutFile)
objLink.TargetPath = "C:\path\to\program"
objLink.Description = "Shortcut Description"
objLink.IconLocation = "\\server\share\file.ico"
objLink.WorkingDirectory = "C:\path\to\program"
objLink.Save