Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Learn More

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

  • 5 trả lời
  • 1 gặp vấn đề này
  • 7 lượt xem
  • Trả lời mới nhất được viết bởi 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?

Tất cả các câu trả lời (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: