Join the AMA (Ask Me Anything) with the Firefox leadership team to celebrate Firefox 20th anniversary and discuss Firefox’s future on Mozilla Connect. Mark your calendar on Thursday, November 14, 18:00 - 20:00 UTC!

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

We would like to hardcode the Proxy Settings within Mozilla Firefox using Microsoft Group Policy on specific set of computers which are domain joined.

  • 2 回覆
  • 1 有這個問題
  • 6 次檢視
  • 最近回覆由 rahul.rane

more options

We would also like to restrict installation of Mozilla Firefox for users without administrative privileges as the same is available by design.

We would also like to restrict installation of Mozilla Firefox for users without administrative privileges as the same is available by design.

所有回覆 (2)

more options

You can use a mozilla.cfg file in the Firefox program folder to lock prefs or specify new (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");

See:

These functions can be used in the mozilla.cfg file:

defaultPref();  // set new default value
pref();         // set pref, but allow changes in current session
lockPref();     // lock pref, disallow changes

See also:

more options

Thanks for the response cor-el, this definitely works when the software is installed in the default directory or when we are aware of the installation directory however as non-administrator users can install this in their profile or anywhere where they have access it is difficult to determine the folder where the product is installed. Is there a method which can be used to determine where the product is installed and based on that criteria we can deploy the configuration files using AD GP.