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.