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 sComputer As String
Dim sPhyDir As String
Dim sVirDir As String
Dim strLogDesc As String
Dim vRoot As Object
Dim vdir As Object
sComputer = "localhost"
sPhyDir = "c:\testfax"
sVirDir = "TestFax"
Set vRoot = GetObject("IIS://" & strcomputer & "LOCALHOST/W3SVC/1/ROOT")
Set vdir = vRoot.Create("IIsWebVirtualdir", sVirDir)
vdir.AccessRead = True
vdir.AccessWrite = True
vdir.AccessExecute = True
vdir.Path = sPhyDir
vdir.SetInfo
Set vdir = Nothing
Set vRoot = Nothing
Set vRoot = GetObject("IIS://" & strcomputer & "/W3SVC/1/ROOT")