Jump to content


This is a ready-only archive of the InstallSite Forum. You cannot post any new content here. / Dies ist ein Archiv des InstallSite Forums. Hier können keine neuen Beiträge veröffentlicht werden.
Photo

Finding Flash


2 replies to this topic

antyagi

antyagi
  • Full Members
  • 121 posts

Posted 19 September 2006 - 12:22

Hi eevryone,

I am creating a setup that has Flash Player as its dependency.
I want to check if the flash player is installed on the system? If its installed then what version is installed?

Can some one has got any ides about this?? Any registry key?? some file?? some other way ??

cHeers,
ankur
  ankur tyagi

Dominik Oberlin

Dominik Oberlin
  • Full Members
  • 12 posts

Posted 19 September 2006 - 16:00

In enterprise environments set the dependencies with your software-deployment-tool. Otherwise you can set LaunchConditions directly in the MSI:

LaunchCondition
CODE

Condition                            Description
---------------------------------------------------------------
FLASH8 OR FLASH7 OR FLASH6           Install Flashplayer first!

(expand the Properties for more versions to FLASH5, 4, etc.)


AppSearch
CODE

Property       Signature_
------------------------
FLASH8         SigFlash8
FLASH7         SigFlash7
FLASH6         SigFlash6

(expand the Properties for more versions to FLASH5, 4, etc.)

RegLocator
CODE

Signature   Root    Key                               Name    Type
-------------------------------------------------------------------
SigFlash6   0       ShockwaveFlash.ShockwaveFlash.6           2        
SigFlash5   0       ShockwaveFlash.ShockwaveFlash.5           2        
SigFlash4   0       ShockwaveFlash.ShockwaveFlash.4           2        


Keep in mind to move the Action LaunchConditions in InstallUISequence & InstallExecuteSequence after AppSearch Action! (In InstallShield this is necessary too!)

The corresponding Registry-Keys are:
HKCR\ShockwaveFlash.ShockwaveFlash.6
HKCR\ShockwaveFlash.ShockwaveFlash.5
HKCR\ShockwaveFlash.ShockwaveFlash.4


Dominik Oberlin

Edited by Dominik Oberlin, 19 September 2006 - 17:09.


antyagi

antyagi
  • Full Members
  • 121 posts

Posted 20 September 2006 - 13:20

I am looking for Flash Player 9. And the Flash Player 9 setup available with me is not creating any registry entry looking like ShockwaveFlash.ShockwaveFlash.9.
Registry entries from ShockwaveFlash.ShockwaveFlash.1 to ShockwaveFlash.ShockwaveFlash.1 are already there on fresh installed WinXP machine.

By-the-way, Is there any difference between Flash Player and Flash Plugin?
The setup I have says it is installing Flash Player, but actually it is looking for browser's plugin folder to install Flash Plugin unsure.gif
  ankur tyagi