搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

How to block non-admins from updating firefox 13.x on Terminal Servers.

  • 2 回覆
  • 2 有這個問題
  • 1 次檢視
  • 最近回覆由 Dave_Couch

more options

Hello all! Is there any way to lock down the updating notifications and ability to update Firefox 13.x on a terminal server? I have several users that even though I tell them not to hit the update button they still do causing the update process to hang and cause Firefox to be unusable on a terminal server until I take it out of load balance, uninstall Firefox and then reinstall it.

Is there an .INI file or something like that I can modify to block these updates?

Thanks in advance Dave

Hello all! Is there any way to lock down the updating notifications and ability to update Firefox 13.x on a terminal server? I have several users that even though I tell them not to hit the update button they still do causing the update process to hang and cause Firefox to be unusable on a terminal server until I take it out of load balance, uninstall Firefox and then reinstall it. Is there an .INI file or something like that I can modify to block these updates? Thanks in advance Dave

被選擇的解決方法

You can use a mozilla.cfg file in the Firefox program folder to lock prefs or specify new default values.

Place a file local-settings.js in the defaultspref 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

See also:

從原來的回覆中察看解決方案 👍 0

所有回覆 (2)

more options

選擇的解決方法

You can use a mozilla.cfg file in the Firefox program folder to lock prefs or specify new default values.

Place a file local-settings.js in the defaultspref 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

See also:

more options

col-el thank you so much for this informaiton, I will give it a try later on when the users clear off of the servers.

Best Regards Dave Couch