Difference between revisions of "Real Alternative"
From WPKG | Open Source Software Deployment and Distribution
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 | + | 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. | 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" | |
− | + | 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> | </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>