Community FAQ
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
dlafleur
Engaged Sweeper III

Good morning, folks in Lansweeper Land.
I am looking for a report or reports that will hard disk, VM Disk adds, and server adds along with Servers that have been removed.

Would anyone have something like this that they would be willing to share?

Thanks
Dave L.

 

1 REPLY 1
DavidPK
Lansweeper Tech Support
Lansweeper Tech Support

Hi Dave,

We added a sample report below that should return the information you are after. Additional fields and/or filters on e.g. the specific states can of course still be added. Instructions for adding this report to your Lansweeper installation can be found

If you are interested in building or modifying reports, we do recommend:

SELECT
    tblAssets.AssetName,
    tblAssets.Domain,
    tblDiskDrives.DiskID,
    tblDiskDrives.Size,
    tblDiskDrives.Description,
    tblDiskDrives.LastChanged
FROM
    tblAssets
INNER JOIN
    tblDiskDrives ON tblAssets.AssetID = tblDiskDrives.AssetID
WHERE
    tblDiskDrives.Description LIKE '%Virtual Disk%'
    AND tblDiskDrives.LastChanged > GETDATE() - 7
ORDER BY
    tblAssets.AssetName, tblDiskDrives.DiskID;

 

Reports & Analytics

Ask about reports you're interested in and share reports you've created. Subscribe to receive daily updates of reports shared in the Community.

New to Lansweeper?

Try Lansweeper For Free

Experience Lansweeper with your own data.
Sign up now for a 14-day free trial.

Try Now