Looking for a report that shows all computers that are on IE11. Anyone have one already built? I am not at all familiar with SQL, and have been looking around for one, but only found one that showed version. Not Asset Name. Tried the one below, but all it reports back is version. Can't find where to add Asset Name without getting the error "In aggregate and grouping expressions, the SELECT clause can contain only aggregates and grouping expressions. [ Select clause = tblSoftwareUni,softwareName ]"
Just needs to show IE version & Asset Name.
Select tblSoftware.softwareVersion As IEVersion,
Count(tblAssets.AssetID) As Total
From tblAssets
Inner Join tblSoftware On tblAssets.AssetID = tblSoftware.AssetID
Inner Join tblSoftwareUni On tblSoftware.softID = tblSoftwareUni.SoftID
Where tblSoftwareUni.softwareName Like N'windows internet explorer%'
Group By tblSoftware.softwareVersion
Order By Total