Difference between revisions of "SeaMonkey"
From WPKG | Open Source Software Deployment and Distribution
(No difference)
|
Revision as of 15:27, 11 May 2006
This is a silent installer for the SeaMonkey Suite, the successor of the Mozilla suite.
<package id="seamonkey" name="Seamonkey Suite" revision="101" reboot="false" execute="once" priority="10"> <install cmd='"\\server\share\seamonkey-1.0.1.de-AT.win32.installer.exe" -ms -ira'> <exit code="0" /> </install> <remove cmd='%SYSTEMROOT%\SeaMonkeyUninstall.exe -ms' /> </package>
Please note that I use execute="once" instead of any uninstall check. Perhaps you might want to use this instead:
<check type="uninstall" condition="exists" path="Mozilla SeaMonkey" />
If you want to make SeaMonkey the standard browser include an additional install command in the package definition:
<install cmd='\\server\share\Set_Seamonkey_as_default.cmd' />
Where Set_Seamonkey_as_default.cmd
is :
"%ProgramFiles%\mozilla.org\SeaMonkey\seamonkey.exe" -CreateProfile default "%ProgramFiles%\mozilla.org\SeaMonkey\seamonkey.exe" -setDefaultBrowser -silent
This will of course create a SeaMonkey dummy profile in the systems account windows profile, but I can life with that.