cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
Fossy777
Engaged Sweeper III
Hi there,

would be easy and intuitive to show not only free space and disk size but also used disk space if you would write into the graphical space bar the used space (in the blue bar section or left assigned) and the free space (in the white section or right assigned) and disk size behind it. So if one quickly wants to know exactly how much disk space is used he doesn´t have to use calculator. Good idea?

Regards, Jochen
1 REPLY 1
Hemoco
Lansweeper Alumni
We have added your feature request to our customer wish list, but please note that you can use a custom report to list the information you are after. A sample report can be seen below.
Select Top 1000000 tsysOS.Image As icon,
tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain,
tblAssets.Username,
tblAssets.Userdomain,
tblAssets.IPAddress,
tsysOS.OSname,
tblAssets.SP,
tblAssets.Description,
tblAssets.Firstseen,
tblAssets.Lastseen,
tblDiskdrives.Caption As [Disk],
Convert(Decimal(7,2),tblDiskdrives.Size / 1024 / 1024 / 1024) As TotalGB,
Convert(Decimal(7,2),tblDiskdrives.Freespace / 1024 / 1024 / 1024) As FreeGB,
Convert(Decimal(7,2),tblDiskdrives.Size / 1024 / 1024 / 1024) -
Convert(Decimal(7,2),tblDiskdrives.Freespace / 1024 / 1024 / 1024) As UsedGB,
Ceiling((tblDiskdrives.Size - tblDiskdrives.Freespace) /
(Case tblDiskdrives.Size When 0 Then 1 Else tblDiskdrives.Size
End) * 100) As UsedPCT
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tblDiskdrives On tblAssets.AssetID = tblDiskdrives.AssetID
Inner Join tsysOS On tsysOS.OScode = tblAssets.OScode
Inner Join tblComputersystem On tblAssets.AssetID = tblComputersystem.AssetID
Where tblDiskdrives.DriveType = 3
Order By tblAssets.Domain,
tblAssets.AssetName