Changes
no edit summary
This is a silent installer for the [http://www.mozilla.org/projects/seamonkey/ SeaMonkey Suite], the successor of the Mozilla suite.
<pre>
<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>
</pre>
Please note that I use execute="once" instead of any uninstall check. Perhaps you might want to use this instead:
<pre>
<check type="uninstall" condition="exists" path="Mozilla SeaMonkey" />
</pre>
If you want to make SeaMonkey the standard browser include an additional install command in the package definition:
<pre>
<install cmd='\\server\share\Set_Seamonkey_as_default.cmd' />
</pre>
Where <code>Set_Seamonkey_as_default.cmd</code> is :
<pre>
"%ProgramFiles%\mozilla.org\SeaMonkey\seamonkey.exe" -CreateProfile default
"%ProgramFiles%\mozilla.org\SeaMonkey\seamonkey.exe" -setDefaultBrowser -silent
</pre>
This will of course create a SeaMonkey dummy profile in the systems account windows profile, but I can life with that.
[[category:Silent Installers|SeaMonkey]]
<pre>
<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>
</pre>
Please note that I use execute="once" instead of any uninstall check. Perhaps you might want to use this instead:
<pre>
<check type="uninstall" condition="exists" path="Mozilla SeaMonkey" />
</pre>
If you want to make SeaMonkey the standard browser include an additional install command in the package definition:
<pre>
<install cmd='\\server\share\Set_Seamonkey_as_default.cmd' />
</pre>
Where <code>Set_Seamonkey_as_default.cmd</code> is :
<pre>
"%ProgramFiles%\mozilla.org\SeaMonkey\seamonkey.exe" -CreateProfile default
"%ProgramFiles%\mozilla.org\SeaMonkey\seamonkey.exe" -setDefaultBrowser -silent
</pre>
This will of course create a SeaMonkey dummy profile in the systems account windows profile, but I can life with that.
[[category:Silent Installers|SeaMonkey]]