Hi,
Hard Drives are scanned using WMI(Windows Management Instrumentation) a management framework built into Windows operating systems. Microsoft has not added an identifier for SSD's in the hard drive WMI class. As such SSD's aren't directly identifiable in Lansweeper, but it might be possible to filter on them if their modelname has %SSD% in it or %Solid State%. You can adjust these filters in the report below if you find a different SSD identifier, or remove them to get all types of hard drives.
For instructions on how to add a report to Lansweeper, you can consult
this postSelect Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypename,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tblAssets.Lastseen,
tblAssets.Lasttried,
tblDiskdrives.Volumename,
Ceiling(tblDiskdrives.Size / 1024 / 1024 / 1024) As [Max size in GB],
Ceiling(tblDiskdrives.Freespace / 1024 / 1024 / 1024) As [Free Space in GB],
tblDiskdrives.FileSystem,
tblDiskdrives.Description,
tblDiskdrives.Caption,
tblDiskdrives.Compressed,
(tblDiskdrives.Freespace / tblDiskdrives.Size) * 100 As [Percent Free Space],
tblFloppy.Model,
tblFloppy.Name
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Inner Join tblDiskdrives On tblAssets.AssetID = tblDiskdrives.AssetID
Inner Join tblFloppy On tblAssets.AssetID = tblFloppy.AssetID
Where (tblDiskdrives.Freespace / tblDiskdrives.Size) * 100 < 10 And
(tblFloppy.Model Like '%SSD%' Or tblFloppy.Model Like '%Solid State%') And
tblAssetCustom.State = 1
Order By tblAssets.AssetName,
tblDiskdrives.Caption