Internet Explorer 6 Report
Can anyone help me with creating a SCCM report that lists all machines in a collections that have IE 6 installed? Or if it's easier to create a collection that does the same thing would be good enough too.
Answers (1)
You can create a query based collection. This assumes that , you have enabled software inventory client agent and by default, *.exe is listed:
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 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.FilePath like '%prog%internet%' and SMS_G_System_SoftwareFile.FileVersion like '6.%'