cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
heyash
Engaged Sweeper
I've read this post and this official post and haven't had any luck with my custom scan.

-I created Software: IE6 Scan and under tblComputers have Computername, ComputerUnique and Domain checked (we have three domains). I have also tried this with Domain unchecked.
-Under tblRegistry, I have Valuename and Value checked.
-Under custom registry scanning, I added HKEY_LOCAL_MACHINE with the regpath software\microsoft\internet explorer\ with regvalue version and checked it.

After configuring all of this I rescanned and checked Config / Scanned Info / Registry and nothing shows up. I'm not sure what I'm doing wrong.
1 REPLY 1
Hemoco
Lansweeper Alumni
First, make sure that the item wait time for REGISTRY is set to something other than -1 (disabled) under Scanning Options/Item Wait Time.

Add the registry key for scanning under Scanning Options/Registry Scanning, as shown in the attached image.

Perform a "Full Rescan" of the machines you need, as shown in the attached image. "Full Rescan" buttons are available for domains and IP locations as well.

You will see the scanned info under Computer/Config/Scanned Info/Registry Keys.

Use the following query to create a report on the scanned information:

Select tblComputers.Computername, tblComputers.ComputerUnique,
tblComputers.Domain, tblRegistry.Regkey, tblRegistry.Valuename,
tblRegistry.Value
From tblComputers Inner Join
tblRegistry On tblComputers.Computername = tblRegistry.Computername
Where
tblRegistry.Regkey = 'HKEY_LOCAL_MACHINE\Software\Microsoft\Internet Explorer'
And tblRegistry.Valuename = 'Version'