→ 🚀Are you a Lansweeper Champion?! Join our Contributor Program Sign up here!

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

Hi,

I'm doing some security process development and was wondering if there a Lansweeper report for Windows devices with a Windows Hello compatible biometric device (basically a camera with some depth enhancement or a fingerprint reader).

Thanks, Chris J.

2 REPLIES 2
jduke_halls
Engaged Sweeper III

I don't spend a lot of time in the forums, so I answered this on another post at https://community.lansweeper.com/t5/general-discussions/how-to-find-biometric-devices-for-windows-he...

Here's one for you using the PNP Drivers BIOMETRIC class to find anything that qualifies as a Biometric sensor (it picks up Windows Hello compatible cameras too)

 

Select Top 1000000 a.AssetID,
  a.AssetName,
  a.Domain,
  a.Username,
  a.Userdomain,
  Coalesce(os.Image, [at].AssetTypeIcon10) As icon,
  a.IPAddress,
  ipl.IPLocation,
  ac.Manufacturer,
  ac.Model,
  os.OSname As OS,
  a.SP,
  a.Lastseen As [Last successful scan],
  a.Lasttried As [Last scan attempt],
  pnpdu.DeviceName,
  pnpdu.Description,
  pnpd.FriendlyName,
  pnpdu.DeviceClass,
  pnpdu.DriverProviderName,
  pnpd.DriverVersion,
  pnpd.HardwareID,
  pnpd.PDO,
  pnpd.DeviceID
From tblAssets a
  Left Join tblAssetCustom ac On ac.AssetID = a.AssetID
  Inner Join tblPnPSignedDrivers pnpd On a.AssetID = pnpd.AssetID
  Inner Join tblPnPSignedDriversUni pnpdu On pnpd.PnPSignedDriverUniID =
      pnpdu.PnPSignedDriverUniID
  Left Join tsysAssetTypes [at] On [at].AssetType = a.Assettype
  Left Join tsysIPLocations ipl On a.IPAddress = ipl.IPLocation
  Left Join tsysOS os On os.OScode = a.OScode
  Left Join tblState st On st.State = ac.State
Where pnpdu.DeviceClass = 'BIOMETRIC' And pnpd.PDO Is Not Null And
  pnpd.PDO <> '' And Lower(st.Statename) = 'active'
Order By a.Domain,
  a.AssetName,
  pnpdu.DeviceClass,
  pnpdu.DeviceName

 

ulicorreia
Engaged Sweeper

Did you even get an answer for this? I want to do this now as well.

General Discussions

Find answers to technical questions about Lansweeper.

New to Lansweeper?

Try Lansweeper For Free

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

Try Now