Difference between revisions of "Flash Player"
m |
|||
Line 16: | Line 16: | ||
reboot="false"<br> | reboot="false"<br> | ||
priority="0"><br> | priority="0"><br> | ||
− | <check type="file" condition="exists" path=" | + | <check type="file" condition="exists" path="%PROGRAMFILES%\Mozilla Firefox\plugins\NPSWF32.dll" /><br> |
<br> | <br> | ||
<install cmd='\\server\Admin\Non-MSI\Macromedia_Players\Flash_Firefox\flashplayer7installer.exe /S'><br> | <install cmd='\\server\Admin\Non-MSI\Macromedia_Players\Flash_Firefox\flashplayer7installer.exe /S'><br> | ||
Line 34: | Line 34: | ||
reboot="false"<br> | reboot="false"<br> | ||
priority="0"><br> | priority="0"><br> | ||
− | <check type="file" condition="exists" path=" | + | <check type="file" condition="exists" path="%WINDIR%\system32\Macromed\Flash\Flash.ocx" /><br> |
<br> | <br> | ||
<install cmd='\\server\Admin\Non-MSI\Macromedia_Players\Flash_IE\flashplayer7_winax.exe /Q'><br> | <install cmd='\\server\Admin\Non-MSI\Macromedia_Players\Flash_IE\flashplayer7_winax.exe /Q'><br> |
Revision as of 17:01, 1 September 2006
This is a silent installer for Macromedia Flash Player.
There are two versions of Macromedia Flash Player - for Internet Explorer and for Mozilla Firefox.
Flash Player for Firefox should be installed after Firefox is installed - and hence the Firefox installer should have a higher priority.
If you have an environment with mixed language installations of windows it is best to leave out the file check. In English versions it gets installed to C:\Program Files\ and in german versions to C:\Programme\. Thus it is difficult to check. You can replace the file check by the excute="once" directive.
This is a Macromedia Flash Player for Mozilla Firefox installer:
<package
id="flashplayerfirefox"
name="Flash Player Firefox"
revision="1"
reboot="false"
priority="0">
<check type="file" condition="exists" path="%PROGRAMFILES%\Mozilla Firefox\plugins\NPSWF32.dll" />
<install cmd='\\server\Admin\Non-MSI\Macromedia_Players\Flash_Firefox\flashplayer7installer.exe /S'>
<exit code="0" />
</install>
</package>
This is a Macromedia Flash Player for the Internet Explorer installer:
<package
id="flashplayerie"
name="Flash Player IE"
revision="1"
reboot="false"
priority="0">
<check type="file" condition="exists" path="%WINDIR%\system32\Macromed\Flash\Flash.ocx" />
<install cmd='\\server\Admin\Non-MSI\Macromedia_Players\Flash_IE\flashplayer7_winax.exe /Q'>
<exit code="0" />
</install>
</package>