Овај сајт ће имати ограничену функционалност док га будемо ажурирали у циљу побољшања вашег искуства. Ако неки чланак не реши ваш проблем и желите да поставите питање, на располагању ће вам бити наше заједнице подршке @FirefoxSupport на Twitter-у и /r/firefox на Reddit-у.

Претражи подршку

Избегните преваре подршке. Никада од вас нећемо тражити да зовете или шаљете поруке на број или да делите личне податке. Пријавите сумњиве радње преко „Пријавите злоупотребу” опције.

Сазнај више

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 одговорa
  • 1 има овај проблем
  • 6 прегледа
  • Последњи одговор послао 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.

Сви одговори (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.