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.
[blue] Dim objDrive As Object
With CreateObject("Scripting.FileSystemObject")
For Each objDrive In .Drives
If objDrive.IsReady Then ' skip unready drives such as empty CD and DVD drives
If objDrive.VolumeName = "Example" Then
MsgBox "Drive is " & objDrive.Path
Exit For
End If
End If
Next
End With[/blue]