Търсене в помощните статии

Избягвайте измамите при поддръжката. Никога няма да ви помолим да се обадите или изпратите SMS на телефонен номер или да споделите лична информация. Моля, докладвайте подозрителна активност на "Докладване за злоупотреба".

Научете повече

How to roll out proxy configuration url?

  • 1 отговор
  • 1 има този проблем
  • 1 изглед
  • Последен отговор от cor-el

more options

Our new Astaro/Sophos Firewall allows me to use "FW-IP:8080/wpad.dat" as auto proxy configuration URL. For the ie it was easy enough to roll that out via *.reg file and login script of our users. But in Firefox, that setting doesn't seem to be in the registry, but in the prefs.js file. Is there a possibility to roll that Setting out via login-script too, or do I have to set that manually on every client? (atm. we're using NetWare (and the login script)) ...

PS: yes, I know, I want to change that away from novell, but that's not gonna be very soon...

Our new Astaro/Sophos Firewall allows me to use "FW-IP:8080/wpad.dat" as auto proxy configuration URL. For the ie it was easy enough to roll that out via *.reg file and login script of our users. But in Firefox, that setting doesn't seem to be in the registry, but in the prefs.js file. Is there a possibility to roll that Setting out via login-script too, or do I have to set that manually on every client? (atm. we're using NetWare (and the login script)) ... PS: yes, I know, I want to change that away from novell, but that's not gonna be very soon...

Всички отговори (1)

more options

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 ROT-13 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 Related preferences: