Difference between revisions of "Winamp"
From WPKG | Open Source Software Deployment and Distribution
m |
|||
Line 1: | Line 1: | ||
This is a silent installer and uninstaller for Winamp. Note that the /S flag is case-sensitive. | This is a silent installer and uninstaller for Winamp. Note that the /S flag is case-sensitive. | ||
− | The | + | The install switches for Winamp: |
+ | <source lang="dos"> | ||
winamp501_full.exe /S /install=SFQDRA | winamp501_full.exe /S /install=SFQDRA | ||
+ | </source> | ||
S=start menu icons | S=start menu icons | ||
Line 11: | Line 13: | ||
A=run winamp agent/set default | A=run winamp agent/set default | ||
− | |||
+ | Some switches are broken on new versions of Winamp. | ||
+ | |||
+ | <source lang="xml"> | ||
<package id="winamp" name="Winamp (music player)" revision="1" priority="0" reboot="false"> | <package id="winamp" name="Winamp (music player)" revision="1" priority="0" reboot="false"> | ||
<check type="uninstall" condition="exists" path="Winamp (remove only)" /> | <check type="uninstall" condition="exists" path="Winamp (remove only)" /> | ||
Line 21: | Line 25: | ||
<remove cmd='cmd /c cmd /c del /s /q "%ProgramFiles%\Winamp\Plugins"' /> | <remove cmd='cmd /c cmd /c del /s /q "%ProgramFiles%\Winamp\Plugins"' /> | ||
<remove cmd='%ProgramFiles%\Winamp\UninstWA.exe /S' /> | <remove cmd='%ProgramFiles%\Winamp\UninstWA.exe /S' /> | ||
− | + | </package> | |
+ | </source> | ||
== Customization == | == Customization == | ||
− | < | + | <source lang="dos"> |
REM Remove the demo that some people consider offensive | REM Remove the demo that some people consider offensive | ||
DEL "%ProgramFiles%\winamp\demo.mp3 | DEL "%ProgramFiles%\winamp\demo.mp3 | ||
− | </ | + | </source> |
== Open questions == | == 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 11:10, 1 May 2008
This is a silent installer and uninstaller for Winamp. Note that the /S flag is case-sensitive.
The install switches for Winamp:
winamp501_full.exe /S /install=SFQDRA
S=start menu icons F=file association Q=quicklaunch icon D=desktop icon R=fake registration A=run winamp agent/set default
Some switches are broken on new versions of Winamp.
<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?