SCCM collection by IE version
Could SCCM create collections by IE vesion? (ex: one collection for clients with IE8 and another collection for clients without IE8 )
Thanks!
May 13th, 2011 3:48am
Yes, you may build a collection based on query.
Try those queries based on discussion below:
http://social.technet.microsoft.com/Forums/en-US/configmgrgeneral/thread/bfcb345a-47e9-4de0-9ccf-7e7c6f1219dc
http://social.technet.microsoft.com/Forums/en-US/configmgrosd/thread/b13a60f4-4053-46a7-a5ee-c7d16c97faec ---Packie
Free Windows Admin Tool Kit Click here and download it now
May 13th, 2011 4:26am
try this for computers whcih doesnt have IE8:
select SMS_R_SYSTEM.ResourceID,SMS_R_SYSTEM.ResourceType,SMS_R_SYSTEM.Name,SMS_R_SYSTEM.SMSUniqueIdentifier,
SMS_R_SYSTEM.ResourceDomainORWorkgroup,SMS_R_SYSTEM.Client from SMS_R_System where SMS_R_System.ResourceId
not in (select SMS_R_System.ResourceId from SMS_R_System inner join
SMS_G_System_SoftwareFile on SMS_G_System_SoftwareFile.ResourceID = SMS_R_System.ResourceId
where SMS_G_System_SoftwareFile.FileName = “iexplore.exe” and SMS_G_System_SoftwareFile.FileVersion like “8.%”)
more Via
http://eskonr.com/2010/04/sccm-reportcollection-for-computers-with-internet-explorer-with-different-versions///Eswar Koneti @ www.eskonr.com
May 13th, 2011 5:12am