Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Search Support

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.

Learn More

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

  • 2 replies
  • 2 have this problem
  • 1 view
  • Last reply by 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

Chosen solution

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:

Read this answer in context 👍 0

All Replies (2)

more options

Chosen Solution

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