Difference between revisions of "Real Alternative"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m
Line 7: Line 7:
 
It is wise to install browsers before this one to get the plugin.  You can achieve this using different priority levels, or using a 'depends-on' tag.
 
It is wise to install browsers before this one to get the plugin.  You can achieve this using different priority levels, or using a 'depends-on' tag.
  
<package
+
<source lang="xml">
 +
<package
 
   id="realalternative"  
 
   id="realalternative"  
 
   name="Real Alternative 1.51"
 
   name="Real Alternative 1.51"
Line 17: Line 18:
 
   <upgrade cmd='"%SOFTWARE%\realalt151.exe" /verysilent /noreboot' />
 
   <upgrade cmd='"%SOFTWARE%\realalt151.exe" /verysilent /noreboot' />
 
   <remove cmd='"%ProgramFiles%\Real Alternative\unins000.exe" /verysilent /noreboot' />
 
   <remove cmd='"%ProgramFiles%\Real Alternative\unins000.exe" /verysilent /noreboot' />
</package>
+
</package>
 
+
</source>
  
 
[[category:Silent Installers]]
 
[[category:Silent Installers]]

Revision as of 14:18, 7 April 2008

This is a silent installer for Real Alternative 1.51 from http://www.free-codecs.com - you would have to double check for a different version.

Upgrade from 1.43 to 1.44 to 1.51 seems to work if you increment the revision number.

Real Alternative is the RealPlayer package with plugins without the benefits of spyware.

It is wise to install browsers before this one to get the plugin. You can achieve this using different priority levels, or using a 'depends-on' tag.

<package
   id="realalternative" 
   name="Real Alternative 1.51"
   revision="3"
   reboot="false"
   priority="0">
   <check type="uninstall" condition="exists" path="Real Alternative 1.51" />
   <install cmd='"%SOFTWARE%\realalt151.exe" /verysilent /noreboot' />
   <upgrade cmd='"%SOFTWARE%\realalt151.exe" /verysilent /noreboot' />
   <remove cmd='"%ProgramFiles%\Real Alternative\unins000.exe" /verysilent /noreboot' />
</package>