Adobe Acrobat/Reader Version Report

Hello everyone,

I was writing a property to see the version of Adobe Reader or Acrobat in our environment using the following relevance:

IF exists regapp “AcroRd32.exe” THEN version of regapp “AcroRd32.exe” as string ELSE IF exists regapp “acrobat.exe” THEN version of regapp “AcroRd32.exe” ELSE “Not Present”

In most cases, the version is returned. However, I am getting a large number of devices coming back with or Incompatible types. Is there something I missed in the relevance, or is there an other reason this result would generated?

Thanks again for all your help!

As soon as I posted this I noticed something I was missing:
IF exists regapp “AcroRd32.exe” THEN version of regapp “AcroRd32.exe” as string ELSE IF exists regapp “acrobat.exe” THEN version of regapp “AcroRd32.exe” as string ELSE “Not Present”

If you see something else incorrect, please comment.

Your second check didn’t stay the same (you returned the version of AcroRd32 again) so it should be

IF exists regapp "AcroRd32.exe" THEN version of regapp "AcroRd32.exe" as string ELSE IF exists regapp "acrobat.exe" THEN version of regapp "acrobat.exe" as string ELSE "Not Present"