Question : How to check different version of same application through SCCM?

Hi Everybody,

There are about 300 hundred computers at the company which has Adobe Flash Player software installed. Some computer has version 10 installed and some has version 9. We plan to standardize our environment and have only one version of Adobe Flash Player. Is there a way to check (create a report) through SCCM which computer has Adobe Flash Player 10 and which computer has version 9?
Thanks.

Answer : How to check different version of same application through SCCM?

You can try using Software_Files to generate query about any of exe or dll (if you collect infor for DLLs) files located in C:\Windows\System32\Macromed\Flash.My example query uses "NPSWF32_FlashUtil.exe" to determain version.

Or you can use Add/Remove Programs to find computers wuth Flash Player and it's version. (second Query)

1:
2:
3:
4:
select SMS_R_System.Name, SMS_R_System.InternetEnabled, SMS_G_System_SoftwareFile.FileName, SMS_G_System_SoftwareFile.FileVersion 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 = "NPSWF32_FlashUtil.exe"
 
 
select SMS_R_System.Name, SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName, SMS_G_System_ADD_REMOVE_PROGRAMS.Version from  SMS_R_System inner join SMS_G_System_ADD_REMOVE_PROGRAMS on SMS_G_System_ADD_REMOVE_PROGRAMS.ResourceID = SMS_R_System.ResourceId where SMS_G_System_ADD_REMOVE_PROGRAMS.DisplayName like "Adobe flash%"
Random Solutions  
 
programming4us programming4us