搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

Learn More

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.