
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-15-2017 05:53 PM
Hi,
I am wondering if there's a way of integrating results from Registry Scan into a Report?
Thanks.
I am wondering if there's a way of integrating results from Registry Scan into a Report?
Thanks.
Labels:
- Labels:
-
General Discussion
2 REPLIES 2

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-15-2017 11:43 PM
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
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

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-15-2017 06:07 PM
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
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
