Hello, I have created a number of reports based on Registry Key scan.
The problem is that if the key is not found on an Asset, then the asset is not shown at all on the report.
What is the proper way of doing this so we know.
a. All assets that have the key
b. All assets that do not have the key
Thanks a lot for any help!
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblSoundDevice.Manufacturer,
tblAssetCustom.Model,
tblRegistry.Regkey,
tblRegistry.Value
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Inner Join tblSoundDevice On tblAssets.AssetID = tblSoundDevice.AssetID
Inner Join tblRegistry On tblAssets.AssetID = tblRegistry.AssetID
Where tblSoundDevice.Manufacturer = 'Conexant' And
tblRegistry.Regkey Like '%SOFTWARE\Conexant' And tblRegistry.Value =
'CurrentDriverVersion' And tblAssetCustom.State = 1