→ 🚀What's New? Explore Lansweeper's Fall 2024 Updates! Fall Launch Blog !
02-27-2024 09:32 PM
I am trying to write a report that will identify all laptops that do not have biometric hardware installed. I was able to find a report that includes all computers with that hardware. Was wondering if this was possible to create?
02-28-2024 04:50 AM - edited 02-28-2024 05:01 AM
Try this report:
Select Top 1000000 tblassets.AssetID,
tblassets.AssetName,
TsysChassisTypes.ChassisName,
Max(tblPnPSignedDriversUni.DeviceName) As biometric_device,
Count(tblPnPSignedDriversUni.DeviceName) As count_biometric_device
From tblassets
Inner Join tblSystemEnclosure On
tblassets.AssetID = tblSystemEnclosure.AssetID
Inner Join TsysChassisTypes On tblSystemEnclosure.ChassisTypes =
TsysChassisTypes.Chassistype And TsysChassisTypes.ChassisName In
('laptop', 'notebook', 'portable')
Left Join tblPnPSignedDrivers On
tblassets.AssetID = tblPnPSignedDrivers.AssetID
Left Join tblPnPSignedDriversUni On
tblPnPSignedDriversUni.PnPSignedDriverUniID =
tblPnPSignedDrivers.PnPSignedDriverUniID And
tblPnPSignedDriversUni.DeviceClass Like 'biometric%'
Group By tblassets.AssetID,
tblassets.AssetName,
TsysChassisTypes.ChassisName
Order By count_biometric_device Desc
Experience Lansweeper with your own data. Sign up now for a 14-day free trial.
Try Now