You will have to create a SQL report. The database only stores size and free space, not used space. I'll see if I can build that. I've never used SQL reports before, so this will be fun to build :)
select Computers.Name as "Computer Name", LogicalDisks.LogicalDeviceId as "Drive Letter", ( (LogicalDisks.Size - LogicalDisks.FreeSpace) / 1024 / 1024 / 1024 ) as "Used Space GB" from Computers inner join LogicalDisks on LogicalDisks.ComputerId = Computers.ComputerId where <ComputerFilter>
Comments
You will have to create a SQL report. The database only stores size and free space, not used space. I'll see if I can build that. I've never used SQL reports before, so this will be fun to build :)
SQL Reports are the bomb. Get at it :)!
Give this a spin:
Appears to be working great.
Thanks Colby!
Please sign in to leave a comment.