
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎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?
Labels:
- Labels:
-
Finished Reports
1 REPLY 1
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎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
