1. Your report uses a lot of table names which are not existing in the Lansweeper database. You need to use the table names as you find them in the report builder and in the database dictionary (which is avaiable from Lansweeper version 5.2).
2. In order to report about registry values, first you need to set up the scan of this value. Go to
Configuration\Custom Scanning, section
Registry Scanning, hit
Add registry key to scan and enter the key path and value to scan. Then scan all your assets again. After the scan completed, you can report on its result. In order to report on this key, you could either use the Report link on the
Configuration\Custom scanning page next to the key you entered, or you create a custom report like this:
Select Top 1000000 tblAssets.AssetID,
tblRegistry.Value,
tblADusers.Displayname,
tblADusers.Title,
tblADusers.Office,
tblAssets.AssetName
From tblAssets
Inner Join tblRegistry On tblAssets.AssetID = tblRegistry.AssetID
Inner Join tblADusers On tblAssets.Username = tblADusers.Username And
tblAssets.Userdomain = tblADusers.Userdomain
Inner Join tblAssetCustom On tblAssets.AssetID = tblAssetCustom.AssetID
Where tblRegistry.Value Like '11.%' And tblRegistry.Regkey =
'HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer' And
tblRegistry.Valuename = 'svcVersion' And tblAssetCustom.State = 1
Order By tblAssets.AssetName
3. The Internet Explorer file version can also be read by file scanning. In the current release of Lansweeper, there is a built-in report called
Files: Internet explorer version, which shows you exactly what you are looking for.