Cerca nel supporto

Attenzione alle mail truffa. Mozilla non chiederà mai di chiamare o mandare messaggi a un numero di telefono o di inviare dati personali. Segnalare qualsiasi attività sospetta utilizzando l'opzione “Segnala abuso”.

Learn More

Questa discussione è archiviata. Inserire una nuova richiesta se occorre aiuto.

I have 60 system to Lockdown so users cannot change the setting and have no access to Active directory, can this be done (and remotely)

  • 3 risposte
  • 3 hanno questo problema
  • 5 visualizzazioni
  • Ultima risposta di cor-el

more options

I am using Firefox 13, 14 and 15, I have 60 pluls systems no access to Active Directory. I need to lockdown the browser so users cannot change the setting.

I am using Firefox 13, 14 and 15, I have 60 pluls systems no access to Active Directory. I need to lockdown the browser so users cannot change the setting.

Tutte le risposte (3)

more options

Which settings do you want to lock?

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 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

Hello cor-el

Thank you for you reply. I want to lockdown as much of firefox as is possible.

more options

You're welcome.

You will have to locate which prefs you want to lock and prevent from making changes to them.
Firefox stores all modified prefs in the prefs.js file, so you can change the settings and compare versions of prefs.js to see under which prefs those settings are stored.