I have a project that requires I gather the current version number of Adobe Acrobat. I’ve seen several fixlet tools that reach in to the registry for this, but they don’t work for me.
Does anyone have any idea how to get the value from the folder name of Acrobat without using the registry. (e.g If Exist “c:\program files(x86)\Adobe\Acrobat 8.0” then "Acrobat 8.0 or If Exist “c:\program files(x86)\Adobe\Acrobat 7.0” then "Acrobat 7.0 else “Not Installed”)
Does anyone have any idea how to get the value from the folder name of Acrobat without using the registry. (e.g If Exist “c:\program files(x86)\Adobe\Acrobat 8.0” then "Acrobat 8.0 or If Exist “c:\program files(x86)\Adobe\Acrobat 7.0” then "Acrobat 7.0 else “Not Installed”)
If you know the name of the Acrobat executable, you can use something like the following (Note: I do not have Acrobat so I am using Adobe Reader as the example):
Q: if (exists regapp “AcroRd32.exe”) then (“Adobe Reader " & product version of regapp “AcroRd32.exe” as string) else (”")