Thanks a Lot I was able to narrow it down to this:
//Disables View passwords
lockPref.privacy.disable_button.view_passwords;
I eliminated and it lauched fine.
But I was unable to get this one to work making Google default lock:
//Locking Search Engine
pref("browser.search.geoSpecificDefaults", false);
pref("browser.searchdefaultenginename.US",
"data:text/plain,browser.search.defaultenginename.US-Google");
pref("browser.search.defaultenginename.US.2",
"data:text/plain,browser.search.defaultenginename.US.2=Google");
pref("browser.search.isUS", false);
Jerry Pittman
PC Technician A+, Network+
Pacific Marine Credit Union
1278 Rocky Point Drive
Oceanside, Ca 92056
[email protected]
-----Original Message-----
From: Klaus Hartnegg [mailto:[email protected]]
Sent: Wednesday, March 30, 2016 11:06 AM
To: '[email protected]'
Subject: Re: [Mozilla Enterprise] Locking down Preferences for Deployment
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"
This message (including any attachments) is intended only for
the use of the individual or entity to which it is addressed and
may contain information that is non-public, proprietary,
privileged, confidential, and exempt from disclosure under
applicable law or may constitute as attorney work product.
If you are not the intended recipient, you are hereby notified
that any use, dissemination, distribution, or copying of this
communication is strictly prohibited. If you have received this
communication in error, notify us immediately by telephone and delete this
message.
Thank you.
_______________________________________________
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"