cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 
studerje
Engaged Sweeper II
I'm trying to setup a scan that will tell me machines that do Not have 2 specific registry key values inside a RegPath.
I tried leaving the RegValue field blank, and tried and asterisk.
Neither seemed to work.
[img][/img]

If I try adding one of the specific RegValue's and rescan an asset, the value displays for the machine. It appears that only machines with a RegValue specified, will return results on the asset or in reports.

How can I tell the registry scan to return all RegValue results for a specific RegPath?

I hope this makes sense. Please let me know if you need more information.

Thanks,
-Jon
1 REPLY 1
Hemoco
Lansweeper Alumni
You cannot list all of the value names present in a registry path, if this is what you're asking. You need to submit a specific value name for scanning and Lansweeper will return the value of that value name.

If the value name does not exist on a machine, no result will be returned for that machine. You can list machines without results using the report below. Replace YourValuename.
Select Top 1000000 tblAssets.AssetID,
tblAssets.AssetName,
tsysAssetTypes.AssetTypename,
tsysAssetTypes.AssetTypeIcon10 As icon,
tblAssets.IPAddress,
tblAssets.Lastseen,
tblAssets.Lasttried
From tblAssets
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Inner Join tsysAssetTypes On tsysAssetTypes.AssetType = tblAssets.Assettype
Where tblAssets.AssetID Not In (Select tblRegistry.AssetID From tblRegistry
Where tblRegistry.Valuename = 'YourValuename') And tsysAssetTypes.AssetTypename =
'windows' And tblAssets.Lastseen <> '' And tblAssetCustom.State = 1