Difference between revisions of "Shockwave Player"
From WPKG | Open Source Software Deployment and Distribution
m |
Hybridgeek (Talk | contribs) |
||
Line 32: | Line 32: | ||
== msi package == | == msi package == | ||
+ | |||
+ | Silent installer for MSI packaged Adobe Shockwave Player 11.5 that handles 32-bit/64-bit Windows. This is based on the previous EXE posting. | ||
+ | |||
+ | <source lang="xml"> | ||
+ | <package | ||
+ | id="shockwave11_11.5.6.606" | ||
+ | name="Adobe Shockwave Player 11 (11.5.6.606)" | ||
+ | revision="1156606" | ||
+ | reboot="false" | ||
+ | priority="50"> | ||
+ | |||
+ | <check type="logical" condition="or"> | ||
+ | <check type="file" condition="versionequalto" path="%SYSTEMROOT%\system32\Adobe\Shockwave 11\control.dll" value="11.5.6.606"/> | ||
+ | <check type="file" condition="versionequalto" path="%SYSTEMROOT%\SysWOW64\Adobe\Shockwave 11\control.dll" value="11.5.6.606"/> | ||
+ | </check> | ||
+ | |||
+ | <check type="logical" condition="or"> | ||
+ | <check type="uninstall" condition="exists" path="Adobe Shockwave Player 11.5"/> | ||
+ | <check type="uninstall" condition="exists" path="Adobe Shockwave Player"/> | ||
+ | </check> | ||
+ | |||
+ | <install cmd='msiexec /qb /i "%SOFTWARE%\Installers\Shockwave\11.5.6.606\sw_lic_full_installer.msi"'> | ||
+ | <exit code="3010" /> | ||
+ | </install> | ||
+ | |||
+ | <!-- 32-bit --> | ||
+ | <install cmd='cmd /c copy /y "%WINDIR%\system32\Adobe\Director\np32dsw.dll" "%ProgramFiles%\Mozilla Firefox\plugins\"' > | ||
+ | <exit code="any" /> | ||
+ | </install> | ||
+ | |||
+ | <!-- 64-bit --> | ||
+ | <install cmd='cmd /c copy /y "%WINDIR%\SysWOW64\Adobe\Director\np32dsw.dll" "%ProgramFiles(x86)%\Mozilla Firefox\plugins\"' > | ||
+ | <exit code="any" /> | ||
+ | </install> | ||
+ | |||
+ | <upgrade cmd='msiexec /qb /i "%SOFTWARE%\Installers\Shockwave\11.5.6.606\sw_lic_full_installer.msi"'> | ||
+ | <exit code="3010" /> | ||
+ | </upgrade> | ||
+ | |||
+ | <!-- 32-bit --> | ||
+ | <upgrade cmd='cmd /c copy /y "%WINDIR%\system32\Adobe\Director\np32dsw.dll" "%ProgramFiles%\Mozilla Firefox\plugins\"' > | ||
+ | <exit code="any" /> | ||
+ | </upgrade> | ||
+ | |||
+ | <!-- 64-bit --> | ||
+ | <upgrade cmd='cmd /c copy /y "%WINDIR%\SysWOW64\Adobe\Director\np32dsw.dll" "%ProgramFiles(x86)%\Mozilla Firefox\plugins\"' > | ||
+ | <exit code="any" /> | ||
+ | </upgrade> | ||
+ | |||
+ | <remove cmd='msiexec /x "%SOFTWARE%\Installers\Shockwave\11.5.6.606\sw_lic_full_installer.msi" /qn' /> | ||
+ | </package> | ||
+ | </source> | ||
+ | |||
This is a silent installer and uninstaller for Macromedia Shockwave Player. | This is a silent installer and uninstaller for Macromedia Shockwave Player. |
Revision as of 20:29, 3 February 2010
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
Silent installer for MSI packaged Adobe Shockwave Player 11.5 that handles 32-bit/64-bit Windows. This is based on the previous EXE posting.
<package
id="shockwave11_11.5.6.606"
name="Adobe Shockwave Player 11 (11.5.6.606)"
revision="1156606"
reboot="false"
priority="50">
<check type="logical" condition="or">
<check type="file" condition="versionequalto" path="%SYSTEMROOT%\system32\Adobe\Shockwave 11\control.dll" value="11.5.6.606"/>
<check type="file" condition="versionequalto" path="%SYSTEMROOT%\SysWOW64\Adobe\Shockwave 11\control.dll" value="11.5.6.606"/>
</check>
<check type="logical" condition="or">
<check type="uninstall" condition="exists" path="Adobe Shockwave Player 11.5"/>
<check type="uninstall" condition="exists" path="Adobe Shockwave Player"/>
</check>
<install cmd='msiexec /qb /i "%SOFTWARE%\Installers\Shockwave\11.5.6.606\sw_lic_full_installer.msi"'>
<exit code="3010" />
</install>
<!-- 32-bit -->
<install cmd='cmd /c copy /y "%WINDIR%\system32\Adobe\Director\np32dsw.dll" "%ProgramFiles%\Mozilla Firefox\plugins\"' >
<exit code="any" />
</install>
<!-- 64-bit -->
<install cmd='cmd /c copy /y "%WINDIR%\SysWOW64\Adobe\Director\np32dsw.dll" "%ProgramFiles(x86)%\Mozilla Firefox\plugins\"' >
<exit code="any" />
</install>
<upgrade cmd='msiexec /qb /i "%SOFTWARE%\Installers\Shockwave\11.5.6.606\sw_lic_full_installer.msi"'>
<exit code="3010" />
</upgrade>
<!-- 32-bit -->
<upgrade cmd='cmd /c copy /y "%WINDIR%\system32\Adobe\Director\np32dsw.dll" "%ProgramFiles%\Mozilla Firefox\plugins\"' >
<exit code="any" />
</upgrade>
<!-- 64-bit -->
<upgrade cmd='cmd /c copy /y "%WINDIR%\SysWOW64\Adobe\Director\np32dsw.dll" "%ProgramFiles(x86)%\Mozilla Firefox\plugins\"' >
<exit code="any" />
</upgrade>
<remove cmd='msiexec /x "%SOFTWARE%\Installers\Shockwave\11.5.6.606\sw_lic_full_installer.msi" /qn' />
</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: