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 fs as Scripting.FileSystemObject
Dim D as Scripting.Drives
Dim dc as Scripting.Drive
Dim S as string
Set fs = CreateObject("Scripting.FileSystemObject")
Set dc = fs.Drives
For Each d in dc
s = s & d.DriveLetter & " - "
If d.DriveType = Remote Then
n = d.ShareName
Else
n = d.VolumeName
End If
...d.FreeSpace
...d.TotalSize
s = s & n & vbCrLf
Next