Discussion Forums/AA Console/Tips & Tricks

Custom Report: Internet Explorer by Version

Shane Corellian
posted this on July 27, 2010 20:52

Copy and paste the code below to your Custom Report.

-- This report will display the number of all installed versions of Internet Explorer
SELECT
    IEVersion, count(*) as "Count"
FROM
    Computer
WHERE
     IEVersion <>''
GROUP BY
    IEVersion    

IE_By_Version.png