Difference between revisions of "Winamp"
From WPKG | Open Source Software Deployment and Distribution
m |
(add content) |
||
Line 10: | Line 10: | ||
<remove cmd='%ProgramFiles%\Winamp\UninstWA.exe /S' /> | <remove cmd='%ProgramFiles%\Winamp\UninstWA.exe /S' /> | ||
</package> | </package> | ||
+ | |||
+ | == Customization == | ||
+ | |||
+ | <pre> | ||
+ | REM Remove the demo that some people consider offensive | ||
+ | DEL "%ProgramFiles%\winamp\demo.mp3 | ||
+ | </pre> | ||
+ | |||
+ | == Open questions == | ||
+ | |||
+ | - How do you disable the system tray agent? | ||
+ | - How do you set a web proxy? | ||
+ | |||
[[category:Silent Installers]] | [[category:Silent Installers]] |
Revision as of 17:19, 24 April 2007
This is a silent installer and uninstaller for Winamp. Note that the /S flag is case-sensitive.
<package id="winamp" name="Winamp (music player)" revision="1" priority="0" reboot="false"> <check type="uninstall" condition="exists" path="Winamp (remove only)" /> <install cmd='%SOFTWARE%\winamp\winamp507-full.exe /S /install=SFQR' /> <install cmd='"%ProgramFiles%\winamp\eMusic\Uninst-eMusic-promotion.exe"' /> <upgrade cmd='%SOFTWARE%\winamp\winamp507-full.exe /S /install=SFQR' /> <upgrade cmd='"%ProgramFiles%\winamp\eMusic\Uninst-eMusic-promotion.exe"' /> <remove cmd='cmd /c cmd /c del /s /q "%ProgramFiles%\Winamp\Plugins"' /> <remove cmd='%ProgramFiles%\Winamp\UninstWA.exe /S' /> </package>
Customization
REM Remove the demo that some people consider offensive DEL "%ProgramFiles%\winamp\demo.mp3
Open questions
- How do you disable the system tray agent? - How do you set a web proxy?