Difference between revisions of "Real Alternative"

From WPKG | Open Source Software Deployment and Distribution
Jump to: navigation, search
m (the page said that spyware was a benefit, which it isn't (yes, I know it was being tongue-in-cheek, but it didn't acknowledge that))
 
Line 1: Line 1:
This is a silent installer for Real Alternative 1.90 from http://www.free-codecs.com - you would have to double check for a different version.
+
This is a silent installer for Real Alternative from http://www.free-codecs.com/download/real_alternative.htm
 
+
Upgrade from 1.43 to 1.44 to 1.51 seems to work if you increment the revision number.
+
 
+
Upgrade from 1.80 to 1.90 also worked by incrementing the revision number by adding a dot between the last version digit.  
+
  
 
Real Alternative is the RealPlayer package with plugins and without the spyware.
 
Real Alternative is the RealPlayer package with plugins and without the spyware.
Line 10: Line 6:
  
 
<source lang="xml">
 
<source lang="xml">
 +
<?xml version="1.0" encoding="UTF-8"?>
 +
<!-- OpenSource -->
 +
<packages>
 
<package
 
<package
  id="realalternative"  
+
    id="RealAlternative"
  name="Real Alternative 1.90"
+
    name="Real Alternative %version%"
  revision="190"
+
    revision="%short_version%"
  reboot="false"
+
    reboot="false"
  priority="0">
+
    priority="60">
  <check type="uninstall" condition="exists" path="Real Alternative 1.9.0" />
+
 
  <install cmd='"%SOFTWARE%\realalt190.exe" /verysilent /noreboot' />
+
    <variable name="version" value="2.0.2" />
  <upgrade cmd='"%SOFTWARE%\realalt190.exe" /verysilent /noreboot' />
+
    <variable name="short_version" value="202" />
  <remove cmd='"%ProgramFiles%\Real Alternative\unins000.exe" /verysilent /noreboot' />
+
 
 +
    <check type="uninstall" condition="exists" path="Real Alternative %version%" />
 +
 
 +
    <install cmd='"%SOFTWARE%\realplayer\Real_Alternative_%short_version%.exe" /verysilent /noreboot' />
 +
 
 +
    <upgrade cmd='"%SOFTWARE%\realplayer\Real_Alternative_%short_version%.exe" /verysilent /noreboot' />
 +
 
 +
    <remove architecture="x86" cmd='"%ProgramFiles%\Real Alternative\unins000.exe" /verysilent /noreboot' />
 +
    <remove architecture="x64" cmd='"%ProgramFiles(x86)%\Real Alternative\unins000.exe" /verysilent /noreboot' />
 
</package>
 
</package>
 +
</packages>
 
</source>
 
</source>
 +
  
 
[[category:Silent Installers]]
 
[[category:Silent Installers]]

Latest revision as of 14:53, 18 September 2012

This is a silent installer for Real Alternative from http://www.free-codecs.com/download/real_alternative.htm

Real Alternative is the RealPlayer package with plugins and without the spyware.

It is wise to install browsers before this one, so that the plugin is installed into the brower's program files directory. You can achieve this using different priority levels, or using a 'depends-on' tag.

<?xml version="1.0" encoding="UTF-8"?>
<!-- OpenSource -->
<packages>
<package
    id="RealAlternative"
    name="Real Alternative %version%"
    revision="%short_version%"
    reboot="false"
    priority="60">

    <variable name="version" value="2.0.2" />
    <variable name="short_version" value="202" />

    <check type="uninstall" condition="exists" path="Real Alternative %version%" />

    <install cmd='"%SOFTWARE%\realplayer\Real_Alternative_%short_version%.exe" /verysilent /noreboot' />

    <upgrade cmd='"%SOFTWARE%\realplayer\Real_Alternative_%short_version%.exe" /verysilent /noreboot' />

    <remove architecture="x86" cmd='"%ProgramFiles%\Real Alternative\unins000.exe" /verysilent /noreboot' />
    <remove architecture="x64" cmd='"%ProgramFiles(x86)%\Real Alternative\unins000.exe" /verysilent /noreboot' />
</package>
</packages>