<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-15">
</head>
<body text="#000000" bgcolor="#FFFFFF">
hi everyone,<br>
<br>
i am relatively new to wpkg. i have worked with it for several
weeks, but i still have many things to learn.<br>
my problem: i can deploy a standard firefox. my deployed settings
on the other hand (make firefox a default browser - i tried options
1 and 2 from the wiki, startup homepage, ....) do not work AT ALL. i
created the policies.js, the mozilla.cfg, also another package to
make firefox the default browser (as mentioned before).<br>
<br>
does anyone else have this problem (and hopefully a solution)?<br>
<br>
here is my simple package xml:<br>
<br>
<font color="#3366ff"> <package <br>
id="firefox"<br>
name="Mozilla Firefox"<br>
revision="%version%"<br>
reboot="false"<br>
priority="10"><br>
<br>
<!--<depends package-id="adobeReader11"/><br>
<depends package-id="vlc"/><br>
<depends package-id="flashPlayer"/>--><br>
<br>
<variable name="version" value="24.3.0" /><br>
<variable name="architecture" value="x86" /><br>
<variable name="locale" value="de" /><br>
<!--<variable name="locale" value="en-GB"
/>--><br>
<!-- <variable name="locale" value="fr" />
--><br>
<br>
<check type="uninstall" condition="exists"
path="Mozilla Firefox %version% (%architecture% %locale%)" /><br>
<br>
<!-- erzwingt beenden von firefox (prozess firefox.exe)
--><br>
<install cmd="taskkill /F /IM firefox.exe"><br>
<exit code="0" /><br>
<exit code="128" /><br>
</install><br>
<br>
<!-- installation/upgrade von firefox --><br>
<install
cmd='"%SOFTWARE%\_default\firefox\firefox_setup_%version%esr.exe"
-ms' /><br>
<br>
<install cmd='%ComSpec% /c if %PROCESSOR_ARCHITECTURE%
== x86 "%PROGRAMFILES%\Mozilla Firefox\uninstall\helper.exe"
/SetAsDefaultAppGlobal' ><br>
<exit code="2" /><br>
</install><br>
<install cmd='%ComSpec% /c if %PROCESSOR_ARCHITECTURE%
== AMD64 "%PROGRAMFILES(x86)%\Mozilla
Firefox\uninstall\helper.exe" /SetAsDefaultAppGlobal' ><br>
<exit code="2" /><br>
</install><br>
<br>
<upgrade include="install" /><br>
<br>
<upgrade cmd='%ComSpec% /c if %PROCESSOR_ARCHITECTURE%
== x86 "%PROGRAMFILES%\Mozilla Firefox\uninstall\helper.exe"
/SetAsDefaultAppGlobal' ><br>
<exit code="2" /><br>
</upgrade><br>
<upgrade cmd='%ComSpec% /c if %PROCESSOR_ARCHITECTURE%
== AMD64 "%PROGRAMFILES(x86)%\Mozilla
Firefox\uninstall\helper.exe" /SetAsDefaultAppGlobal' ><br>
<exit code="2" /><br>
</upgrade> <br>
<br>
<remove cmd="taskkill /F /IM Firefox.exe"><br>
<exit code="0" /><br>
<exit code="128" /><br>
</remove><br>
<br>
<!-- for 32bit and 64bit System --><br>
<remove cmd='%COMSPEC% /C if exist
"%PROGRAMFILES%\Mozilla Firefox\uninstall\helper.exe"
"%PROGRAMFILES%\Mozilla Firefox\uninstall\helper.exe" -ms' /><br>
<remove cmd='%COMSPEC% /C if exist
"%PROGRAMFILES(x86)%\Mozilla Firefox\uninstall\helper.exe"
"%PROGRAMFILES(x86)%\Mozilla Firefox\uninstall\helper.exe" -ms'
/><br>
<br>
</package></font><br>
<br>
thanks and cheers<br>
roland<br>
</body>
</html>