Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Used disk space 2

Status
Not open for further replies.

Brycspain

IS-IT--Management
Mar 9, 2006
150
US
I'm trying to get used disk space on a server however, usedspace isn't the right syntax for the com object. Could someone tell me where to look or tell me what the syntax is please?

Thanks

Code:
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\CIMV2")
	    Set colHardDrives = objWMIService.ExecQuery("SELECT * FROM Win32_LogicalDisk where Drivetype = " _
	                                           & HARD_DISK & "") 
		For Each objHardDrive In colHardDrives
		UsedSpace = (objHarddrive.UsedSpace / objHardDrive.Size * 100)
                oLogFile.Writeline "DeviceID: " & objHardDrive.DeviceID
	        oLogFile.Writeline "UsedSpace: " & objHardDrive.UsedSpace/1024\1024+1 & " MB"
Next
 
Look at the supported properties for this WMI class:

A quick look at this class it looks like you will have to compute the used space by taking the .Size - .FreeSpace

--------------------------------------------------------------------------------
dm4ever
My philosophy: K.I.S.S - Keep It Simple Stupid
 
Thanks PHV and Dm...I saw there wasn't a used space object so I deduced I would have to take the total size minus the free space.

Kudos to both of you.
 
You will also want to do some math on the values.

Code:
strComputer = "."
Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
Set colItems = objWMIService.ExecQuery("Select * from Win32_LogicalDisk where DriveType = '3'",,48)
For Each objItem in colItems
    report = report & "****************************************************************************************************" & vbCrLf
    report = report & "Drive: " & objItem.Caption & vbTab & "VolumeSerialNumber: " & objItem.VolumeSerialNumber& vbCrLf 
    report = report & vbTab & "Size: " & objItem.Size /1024/1024\1024+1 & "GB Total Disk Space" & vbCrLf
    report = report & vbTab & "Used Space: " & (objItem.Size - objItem.FreeSpace) /1024/1024\1024+1 & "GB Used Disk Space" & vbCrLf
    report = report & vbTab & "Free Space: " & objItem.FreeSpace /1024/1024\1024+1 & "GB Free Disk Space" & vbCrLf
    report = report & "****************************************************************************************************" & vbCrLf
    
Next

WScript.Echo report

I hope you find this post helpful.

Regards,

Mark

Check out my scripting solutions at
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top