Difference between revisions of "Shockwave Player"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
Line 1: Line 1:
 +
Silent Installer for Adobe Shockwave 11 Player:
 +
 +
<source lang="xml">
 +
    <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>
 +
</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 10:03, 28 April 2008

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>

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>