Reputation: 1935
I need to install Flash player with my application MSI. So I did these steps:
The installer returns false all the time. I mean it says no flash player installed although the key allready exists in the registry and it tries to install Flash player .
Upvotes: 2
Views: 2225
Reputation: 986
I think you should rather use:
then the FLASHPLAYERREGISTRYVALUE should resolve to "10,3,181,34" which is the contents of "CurrentVersion" registry value in your case.
Upvotes: 4
Reputation: 21416
To install other software with your package you can use prerequisites. Here is a discussion which may help you: Adding Custom prerequsites to visual studio setup project
A better detection criteria is checking the version for this file:
[SystemFolder]Macromed\Flash\NPSWF32.dll
Upvotes: 1