Difference between revisions of "Shockwave Player"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
Line 1: Line 1:
 +
== exe package ==
 +
 +
 
Silent Installer for Adobe Shockwave 11 Player:
 
Silent Installer for Adobe Shockwave 11 Player:
  
Line 26: Line 29:
 
</package>
 
</package>
 
</source>
 
</source>
 +
 +
 +
== msi package ==
  
 
This is a silent installer and uninstaller for Macromedia Shockwave Player.
 
This is a silent installer and uninstaller for Macromedia Shockwave Player.
Line 40: Line 46:
 
</package>
 
</package>
 
</source>
 
</source>
 +
 +
 +
== other info ==
 +
 +
It is sometimes hard to find proper installers on Adobe sites. Here are some handy links with download locations:
 +
 +
* http://www.adobe.com/go/sw_msi_installer
 +
* http://www.adobe.com/go/sw_full_exe_installer
 +
* http://www.adobe.com/go/sw_slim_exe_installer
  
  
 
[[category:Silent Installers]]
 
[[category:Silent Installers]]

Revision as of 10:18, 2 July 2008

exe package

Silent Installer for Adobe Shockwave 11 Player:

    <package id="shockwave11" name="Adobe Shockwave Player 11" revision="1" reboot="false" priority="0">
        <check type="logical" condition="and">
          <check type="file" condition="versiongreaterorequal" path="%WINDIR%\system32\Adobe\Shockwave 11\control.dll" value="11.0.0.429"/>
          <check type="uninstall" condition="exists" path="Adobe Shockwave Player 11"/>
        </check>
        <!-- Download: http://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/Shockwave_Installer_Full.exe -->
        <!-- Download: http://fpdownload.macromedia.com/get/shockwave/default/english/win95nt/latest/Shockwave_Installer_Slim.exe -->
        <install cmd='%SOFTWARE%\packages\Flash\Shockwave_Installer_Slim.exe /S'>
           <exit code="3010" />
        </install>
        <install cmd='cmd /c copy /y "%WINDIR%\system32\Adobe\Director\np32dsw.dll" "%ProgramFiles%\Mozilla Firefox\plugins\"' >
           <exit code="any" />
        </install>

        <upgrade cmd='%SOFTWARE%\packages\Flash\Shockwave_Installer_Slim.exe /S'>
           <exit code="3010" />
        </upgrade> -->
        <upgrade cmd='cmd /c copy /y "%WINDIR%\system32\Adobe\Director\np32dsw.dll" "%ProgramFiles%\Mozilla Firefox\plugins\"' >
           <exit code="any" />
        </upgrade>

        <remove cmd='%windir%\system32\adobe\SHOCKW~1\UNWISE.EXE /s %windir%\system32\Adobe\SHOCKW~1\Install.log /S'/>
</package>


msi package

This is a silent installer and uninstaller for Macromedia Shockwave Player.

<package id="shockwave" name="Shockwave player" revision="1" priority="0" reboot="false">

 <check type="uninstall" condition="exists" path="Macromedia Shockwave Player" />

 <install cmd='msiexec /qb /l* %SystemDrive%\netinst\logs\shockwave.txt /i %SOFTWARE%\macromedia\mm_fl_sw_installer.msi' />

 <remove cmd="msiexec /qn /l* c:\netinst\logs\retrospect.log /x{7D1D6A24-65D4-454C-8815-4F08A5FFF12C}" />

</package>


other info

It is sometimes hard to find proper installers on Adobe sites. Here are some handy links with download locations: