
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-14-2010 08:12 PM
Is there away to get the used capacity of more than one computer in a report?
Please advise,
Niles
Please advise,
Niles
Labels:
- Labels:
-
Archive
5 REPLIES 5

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-26-2013 01:12 AM
Sorry for hijacking your post, but is there a way to see on servers
the number of disks / what raid their in / what size they are
in a report?? or is this a wish list sort of deal.
the number of disks / what raid their in / what size they are
in a report?? or is this a wish list sort of deal.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-26-2013 03:21 PM
afinetycon wrote:
Sorry for hijacking your post, but is there a way to see on servers
the number of disks / what raid their in / what size they are
in a report?? or is this a wish list sort of deal.
RAID information is not scanned. A general disk report can be seen below.
Select Top 1000000 tsysOS.Image As icon,
tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain,
tblAssets.IPAddress,
tblAssets.Firstseen,
tblAssets.Lastseen,
tblDiskdrives.Caption,
Ceiling(tblDiskdrives.Freespace / 1024 / 1024) As FreeMB,
Ceiling(tblDiskdrives.Size / 1024 / 1024) As TotalMB
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysOS On tsysOS.OScode = tblAssets.OScode
Inner Join tblDiskdrives On tblAssets.AssetID = tblDiskdrives.AssetID
Inner Join tblComputersystem On tblAssets.AssetID = tblComputersystem.AssetID
Where Ceiling(tblDiskdrives.Size / 1024 / 1024) <> 0 And tblAssetCustom.State =
1 And tblDiskdrives.DriveType = 3 And tblComputersystem.Domainrole > 1
Order By tblAssets.Domain,
tblAssets.AssetName,
tblDiskdrives.Caption

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-18-2010 02:47 PM
You can create a new report, copy the sql from the other report and remove the "where" conditions

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-18-2010 02:23 PM
Yes, but this only shows workstations and/or servers that are below the 1Gb limit. I am looking for a way to either display or report used space on all workstations and/or servers.
Thank you,
Niles
Thank you,
Niles

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-16-2010 12:51 PM
See this built-in report as an example: http://www.lansweeper.com/demo/default.aspx?item=cust&det=web40repHDDFreeServers&title=Disk%3a+Servers+less+than+1+GB+free+HD
