Hi, @Kalyan Sundar
Thank you for posting in Microsoft Q&A forum.
Check if this query helps:
select
S.Name0 as [ComputerName],
CDR.SerialNumber as [SerialNumber],
S.User_Name0 as [UserName],
CS.Manufacturer0 as [Manufacturer],
CS.Model0 as [Model],
S.Build01 as [OS Build],
CDR.LastPolicyRequest as [Last Online],
CASE WHEN S.ResourceId in (select ResourceId from v_GS_SYSTEM_DEVICES where Name0 = 'Windows Hello Face Software Device') THEN 'YES' ELSE 'NO' END as [Hello Face Supported],
CASE WHEN S.ResourceId in (select ResourceId from v_GS_SYSTEM_DEVICES where Name0 like '%Fingerprint%') THEN 'YES' ELSE 'NO' END as [Hello Fingerprint Supported]
from v_R_System as S
join v_CombinedDeviceResources as CDR on (CDR.MachineID = S.ResourceID)
join v_GS_COMPUTER_SYSTEM as CS ON (CS.ResourceId = S.ResourceId)
join v_GS_SYSTEM_ENCLOSURE as SE ON (SE.ResourceId = S.ResourceId)
where SE.ChassisTypes0 in (9, 10, 11, 12, 30, 31, 32)
and SE.Tag0 = 'System Enclosure 0'
order by Model
If the answer is the right solution, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Add comment".