VBS Script: Enumerating Drive Properties Using FSO
The below script is a sample of how to retrieve a drives properties via a VBS script Set objFSO = CreateObject(“Scripting.FileSystemObject”) Set colDrives = objFSO.Drives For Each objDrive in colDrives Wscript.Echo “Available space: ” & objDrive.AvailableSpace Wscript.Echo “Drive letter: ” …