On 30.03.2016 at 19:39 Gerard Pittman wrote:
I have configured Firefox with the following preference in
"Mozilla.cfg"  and deployed it.  When launching FireFox it starts
then immediately stops with no message. Can anyone see something that
is preventing it from launching?

Here it works. The error is probably in autoconfig.js.

Errors in mozilla.cfg usually have the effect that Firefox ignores the whole file contents, not that it quits.

Errors in mozilla.cfg can be caught with exception handling:


// mozilla.cfg
try {

// Don't show the Firefox has been upgraded page
lockPref("browser.startup.homepage_override.mstone", "ignore");
// Don't check for the default browser
lockPref("browser.shell.checkDefaultBrowser", false);
// Disable automatic updates
lockPref("app.update.enabled", false);

// Do not send stats
lockPref("toolkit.telemetry.enabled", false);
lockPref("toolkit.telemetry.rejected", true);
lockPref("toolkit.telemetry.prompted", 2);

// Hide Know your rights
lockPref("browser.rights.3.shown", true);

} catch(e) {
    displayError("Error in autoconfig", e);
}

_______________________________________________
Enterprise mailing list
[email protected]
https://mail.mozilla.org/listinfo/enterprise

To unsubscribe from this list, please visit https://mail.mozilla.org/listinfo/enterprise 
or send an email to [email protected] with a subject of 
"unsubscribe"

Reply via email to