Поиск в Поддержке

Избегайте мошенников, выдающих себя за службу поддержки. Мы никогда не попросим вас позвонить, отправить текстовое сообщение или поделиться личной информацией. Сообщайте о подозрительной активности, используя функцию «Пожаловаться».

Learn More

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 имеет эту проблему
  • 49 просмотров
  • Последний ответ от 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!