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;