Buscar en Ayuda

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

We would like to hardcode the Proxy Settings within Mozilla Firefox using Microsoft Group Policy on specific set of computers which are domain joined.

  • 2 respuestas
  • 1 tiene este problema
  • 2 visitas
  • Última respuesta de rahul.rane

more options

We would also like to restrict installation of Mozilla Firefox for users without administrative privileges as the same is available by design.

We would also like to restrict installation of Mozilla Firefox for users without administrative privileges as the same is available by design.

Todas las respuestas (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 defaults\pref folder where you also find the file channel-prefs.js to specify using mozilla.cfg.

pref("general.config.filename", "mozilla.cfg");

See:

These functions can be used in the mozilla.cfg file:

defaultPref();  // set new default value
pref();         // set pref, but allow changes in current session
lockPref();     // lock pref, disallow changes

See also:

more options

Thanks for the response cor-el, this definitely works when the software is installed in the default directory or when we are aware of the installation directory however as non-administrator users can install this in their profile or anywhere where they have access it is difficult to determine the folder where the product is installed. Is there a method which can be used to determine where the product is installed and based on that criteria we can deploy the configuration files using AD GP.