This site will have limited functionality while we undergo maintenance to improve your experience. If an article doesn't solve your issue and you want to ask a question, we have our support community waiting to help you at @FirefoxSupport on Twitter and/r/firefox on Reddit.

تلاش سپورٹ

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

مزید سیکھیں

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 جواب دیں
  • 1 میں یہ مسئلہ ہے
  • 1 دیکھیں
  • آخری جواب بذریعہ 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?

منتخب شدہ حل

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
اس جواب کو سیاق و سباق میں پڑھیں 👍 3

تمام جوابات (2)

more options

منتخب شدہ حل

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!