Hi, Not sure if I have got this correct as I dont have the keys you have listed or CISCO installed, but I'm assuming your after a report which confirms whether or not the registry keys you listed are installed , if this is correct this should get you started , so if you have the registry key in your scan criteria then this has the first 2 keys setup you just need to repeat the process and create all the keys you require by adding the additional sub queries.....
Select Top 1000000 tsysOS.Image As icon,
tblAssets.AssetID,
tblAssets.AssetName,
Case
When AutoPush.Valuename Is Not Null Then 'Installed'
Else '?'
End As AutoPush,
Case
When ElavationOFF.Valuename Is Not Null Then 'Installed'
Else '?'
End As ElevationOfflineEnable,
tblAssets.Domain,
tblAssets.Username,
tblAssets.IPAddress,
tblAssets.Firstseen,
tblAssets.Lastseen,
tblAssets.Lasttried,
tsysOS.OSname
From tblAssets
Inner Join tsysOS On tsysOS.OScode = tblAssets.OScode
Left Join (Select Top 1000000 tblRegistry.AssetID,
tblRegistry.Regkey,
tblRegistry.Valuename,
tblRegistry.Value
From tblRegistry
Where tblRegistry.Regkey Like '%SOFTWARE\Duo Security\DuoCredProv' And
tblRegistry.Valuename = 'AutoPush') AutoPush On AutoPush.AssetID =
tblAssets.AssetID
Left Join (Select tblRegistry.Regkey,
tblRegistry.Valuename,
tblRegistry.AssetID,
tblRegistry.Value
From tblRegistry
Where tblRegistry.Regkey Like '%SOFTWARE\Duo Security\DuoCredProv' And
tblRegistry.Valuename = 'ElevationOfflineEnable') ElavationOFF
On ElavationOFF.AssetID = tblAssets.AssetID
Order By tblAssets.Domain,
tblAssets.AssetName