cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
waltkrao
Engaged Sweeper II
Hi,

I am wondering if there's a way of integrating results from Registry Scan into a Report?

Thanks.
2 REPLIES 2
waltkrao
Engaged Sweeper II
Hi,

I am keen to know if I can scan a particular registry,{for example: HKLM\Software\Mozilla\Mozilla Firefox}
from the reports.
If possible, it needs to report the version information using a "Regvalue" that is available in Registry.
Is this possible?

Thanks
76012
Engaged Sweeper II
Like this?

Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tblAssets.Domain,
tblRegistry.Regkey,
tblRegistry.Valuename,
tblRegistry.Value,
tblRegistry.Lastchanged
From tblAssets
Inner Join tblRegistry On tblAssets.AssetID = tblRegistry.AssetID
Where tblRegistry.Regkey Like '%internet explorer' And tblAssets.Assettype = -1
Order By tblAssets.AssetName