‘DriveInfo.vbs – Show information for local & network drives. ‘Note: A bug in WScript results in sizes over 2 GB being misreported. ‘© Bill James – billjames.geo@yahoo.com – rev 16 Feb 2000 Option Explicit Dim WshShell,FSO,Drv,Dtype,Dfree,Dtot Dim Dname,Dpct,Dused,Dserial,Dinfo Set WshShell=WScript.CreateObject("WScript.Shell") Set FSO=CreateObject("Scripting.FileSystemObject") For each Drv in FSO.Drives If Drv.DriveType=0 Then…