Windows 10 reached EOS (end of support) on October 14, 2025. If you are on Windows 10, see this article.

Search Support

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

Learn More
Solved Archived

how do lock down browser settings? i need to deploy the latest version of firefox to the enterprise

cor-el replied
riceldi

I work for a company with 4000+ users and I have been tasked to deploy the latest version of Firefox. I need to lock down the browser settings, setup home page, disable auto updates, rebrand the browser (e.g. Mozilla Firefox provided by companyname). i was able to do this with firefox 3.x but I cant seem to make it work with version 7.0.1

I work for a company with 4000+ users and I have been tasked to deploy the latest version of Firefox. I need to lock down the browser settings, setup home page, disable auto updates, rebrand the browser (e.g. Mozilla Firefox provided by companyname). i was able to do this with firefox 3.x but I cant seem to make it work with version 7.0.1

All Replies (6)

Chosen Solution

The greprefs folder no longer exists with the change to using a ZIP archive omni.jar and you need to place a file local-settings.js in the defaults\pref instead.


You can use a mozilla.cfg file in the Firefox program folder to lock prefs or specify default values.

Place a file local-settings.js in the defaults\pref folder where you also find the file channel-prefs.js to specify using mozilla.cfg.

pref("general.config.filename", "mozilla.cfg");
pref("general.config.obscure_value", 0); // use this to disable the byte-shift

See:

Thanks for the suggestion. I tried this and now Firefox will not launch

Thanks for your help!! I was making a mistake by not zipping the contents of the omni.jar when i modified the following: brand.dtd, brand.properties and browserconfig.properties

Can you provide me the info to disable to Update option under Help/About Firefox?

You can lock the appropriate prefs and set the update URL to an empty string if necessary

lockPref("app.update.auto", false);
lockPref("app.update.url", "");

That worked!

Thanks for all your help!!