Difference between revisions of "Shockwave Player"
From WPKG | Open Source Software Deployment and Distribution
Hybridgeek (Talk | contribs) |
m (→msi package) |
||
Line 37: | Line 37: | ||
<source lang="xml"> | <source lang="xml"> | ||
<package | <package | ||
− | id=" | + | id="shockwave" |
− | name="Adobe Shockwave Player 11 (11.5. | + | name="Adobe Shockwave Player 11 (11.5.8.612)" |
− | revision=" | + | revision="1158612" |
reboot="false" | reboot="false" | ||
priority="50"> | priority="50"> | ||
<check type="logical" condition="or"> | <check type="logical" condition="or"> | ||
− | <check type="file" condition="versionequalto" path="%SYSTEMROOT%\system32\Adobe\Shockwave 11\control.dll" value="11.5. | + | <check type="file" condition="versionequalto" path="%SYSTEMROOT%\system32\Adobe\Shockwave 11\control.dll" value="11.5.8.612"/> |
− | <check type="file" condition="versionequalto" path="%SYSTEMROOT%\SysWOW64\Adobe\Shockwave 11\control.dll" value="11.5. | + | <check type="file" condition="versionequalto" path="%SYSTEMROOT%\SysWOW64\Adobe\Shockwave 11\control.dll" value="11.5.8.612"/> |
</check> | </check> | ||
Line 53: | Line 53: | ||
</check> | </check> | ||
− | <install cmd='msiexec /qb /i "%SOFTWARE%\Installers\Shockwave\11.5. | + | <install cmd='msiexec /qb /i "%SOFTWARE%\Installers\Shockwave\11.5.8.612\sw_lic_full_installer.msi"'> |
<exit code="3010" /> | <exit code="3010" /> | ||
</install> | </install> | ||
Line 67: | Line 67: | ||
</install> | </install> | ||
− | <upgrade cmd='msiexec /qb /i "%SOFTWARE%\Installers\Shockwave\11.5. | + | <upgrade cmd='msiexec /qb /i "%SOFTWARE%\Installers\Shockwave\11.5.8.612\sw_lic_full_installer.msi"'> |
<exit code="3010" /> | <exit code="3010" /> | ||
</upgrade> | </upgrade> | ||
Line 81: | Line 81: | ||
</upgrade> | </upgrade> | ||
− | <remove cmd='msiexec /x "%SOFTWARE%\Installers\Shockwave\11.5. | + | <remove cmd='msiexec /x "%SOFTWARE%\Installers\Shockwave\11.5.8.612\sw_lic_full_installer.msi" /qn' /> |
</package> | </package> | ||
</source> | </source> | ||
Line 99: | Line 99: | ||
</package> | </package> | ||
</source> | </source> | ||
− | |||
== other info == | == other info == |
Revision as of 23:01, 25 August 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="shockwave"
name="Adobe Shockwave Player 11 (11.5.8.612)"
revision="1158612"
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.8.612"/>
<check type="file" condition="versionequalto" path="%SYSTEMROOT%\SysWOW64\Adobe\Shockwave 11\control.dll" value="11.5.8.612"/>
</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.8.612\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.8.612\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.8.612\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: