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.
Dim objFSO
Set objFSO = CreateObject("Scripting.FileSystemObject")
strFolderPath = "Path/To/Folder"
On Error Resume Next
'Errors if the folder already exists
objFSO.CreateFolder strFolderPath
On Error GoTo 0
Set objFSO = Nothing
FollowHyperlink strFolderPath