Vanwege onderhoudswerkzaamheden die uw ervaring zouden moeten verbeteren, heeft deze website beperkte functionaliteit. Als een artikel uw probleem niet verhelpt en u een vraag wilt stellen, kan onze ondersteuningsgemeenschap u helpen in @FirefoxSupport op Twitter en /r/firefox op Reddit.

Zoeken in Support

Vermijd ondersteuningsscams. We zullen u nooit vragen een telefoonnummer te bellen, er een sms naar te sturen of persoonlijke gegevens te delen. Meld verdachte activiteit met de optie ‘Misbruik melden’.

Meer info

Deze conversatie is gearchiveerd. Stel een nieuwe vraag als u hulp nodig hebt.

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

  • 2 antwoorden
  • 2 hebben dit probleem
  • 1 weergave
  • Laatste antwoord van 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

Gekozen oplossing

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:

Dit antwoord in context lezen 👍 0

Alle antwoorden (2)

more options

Gekozen oplossing

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