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".

Tìm hiểu thêm

We are using mandatory profiles in our organization. So after I update firefox, the users will see "Hooray! Your Firefox is up to date." after each login!!!

  • 2 trả lời
  • 1 gặp vấn đề này
  • 1 lượt xem
  • Trả lời mới nhất được viết bởi Muudzis

more options

Since we are using mandatory profiles for all users, after firefox gets updated the user is forced to see "Hooray! Your Firefox is up to date." message every time the log in and start the browser. It is not easy or possible to update user profiles each time the firefox gets updated. Besides lately it happens very often. Where can I globally in server side disable this annoying message? Or at least how can I manually edit preferences file stored in the mandatory profile folder to disable this annoying message?

Since we are using mandatory profiles for all users, after firefox gets updated the user is forced to see "Hooray! Your Firefox is up to date." message every time the log in and start the browser. It is not easy or possible to update user profiles each time the firefox gets updated. Besides lately it happens very often. Where can I globally in server side disable this annoying message? Or at least how can I manually edit preferences file stored in the mandatory profile folder to disable this annoying message?

Giải pháp được chọn

Try to set the browser.startup.homepage_override.mstone pref to ignore via a mozilla.cfg file.

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");
pref("general.config.obscure_value", 0); // use this to disable the byte-shift

See:

You can use these functions in mozilla.cfg:

defaultPref();  // set new default value
pref();         // set pref, but allow changes in current session
lockPref();     // lock pref, disallow changes
Đọc câu trả lời này trong ngữ cảnh 👍 3

Tất cả các câu trả lời (2)

more options

Giải pháp được chọn

Try to set the browser.startup.homepage_override.mstone pref to ignore via a mozilla.cfg file.

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");
pref("general.config.obscure_value", 0); // use this to disable the byte-shift

See:

You can use these functions in mozilla.cfg:

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

Setting user_pref("browser.startup.homepage_override.mstone", "ignore"); in mandatory profile prefs.js removed the "updated" page. Thank you!