Mozilla 도움말 검색

고객 지원 사기를 피하세요. 저희는 여러분께 절대로 전화를 걸거나 문자를 보내거나 개인 정보를 공유하도록 요청하지 않습니다. "악용 사례 신고"옵션을 사용하여 의심스러운 활동을 신고해 주세요.

Learn More

How can I set a specified homepage for all users? Thank you!

  • 5 답장
  • 1 이 문제를 만남
  • 9 보기
  • 최종 답변자: cor-el

more options

I need to set a same homepage for all users, user profiles. Can someone help with this?

I need to set a same homepage for all users, user profiles. Can someone help with this?

모든 댓글 (5)

more options

Hello, you might have to do this manually for each profile -- if you wish to submit a feature request, do so at https://bugzilla.mozilla.org -- Once there you will need to create an account. When you're registered follow the documentation for bug filing to get you started.

more options

Is there a reason you want this?

more options

We are running Firefox Quantum on Windows Server 2012R2 where all users must have same homepage when they open Firefox browser

more options

I called for more help.

more options

You can use the mozilla.cfg file in the Firefox program folder to set or lock preferences and run privileged JavaScript code.

The mozilla.cfg file needs to be in the main Firefox program folder.

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

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

This requires a local-settings.js file in the "defaults/pref" folder where the channel-prefs.js file is located that specifies to use mozilla.cfg.

//
pref("general.config.filename", "mozilla.cfg");
pref("general.config.obscure_value", 0);

The mozilla.cfg and local-settings.js files need to start with a comment line (//).

See Configuration:

See also: