This is updated post for long ago blogged post http://eskonr.com/2010/04/sccm-reportcollection-for-computers-with-internet-explorer-with-different-versions/.
are you in search of getting summary of IE Versions ,so that you can plan for the migration of Old IE Versions to current version ?
Below is the SSRS/SQL report which will help you to get count of IE Versions and total.
SQL Query used in Report(if you are still running on SCCM 2007):
SELECT distinct SUBSTRING(sf.fileversion, -1, CHARINDEX(‘.’, sf.fileversion) +1 ) AS [IE Version],
COUNT(*) as Count from v_GS_SoftwareFile SF where FileName=’iexplore.exe’
group by SUBSTRING(sf.fileversion, -1, CHARINDEX(‘.’, sf.fileversion) +1 )
order by 2
Note:Replace the quotes with original.
SSRS Report attached here. Download the rdl file and upload to your SSRS report folder.
Configmgr :SSRS Report count of IE Versions is a post from: Eswar Koneti's Blog