Find All Windows Computers and their Installed Internet Explorer Versions
Report on all Windows Computers on your network and which Internet Explorer version they currently have installed. By providing you with these insights, you can take action to prevent devices in your environment from running old, outdated Internet Explorer versions.
Internet Explorer Version Query
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