Script to list free disk space on a computer?
Script to list free disk space on a computer?
If you are running a Microsoft OS, then you can use this script from the Microsoft site to list the FreeSpace.
CODE:
Const HARD_DISK = 3
strComputer = “.”
Set objWMIService = GetObject(“winmgmts:” _
& “{impersonationLevel=impersonate}!\\” & strComputer & “\root\cimv2″)
Set colDisks = objWMIService.ExecQuery _
(“Select * from Win32_LogicalDisk Where DriveType = ” & HARD_DISK & “”)
For Each objDisk in colDisks
Wscript.Echo “DeviceID: “& vbTab & objDisk.DeviceID
Wscript.Echo “Free Disk Space: “& vbTab & objDisk.FreeSpace
Next