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

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

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

What command can I put into Channel-prefs.js file to enable "Override automatic cache management.

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

more options

I am trying to build a CHannel-prefs.js file that I can deploy via script to 300 non-domain laptops. I need to change the firefox to have cach size 1024MB but the following two commands are not changing it.

pref("browser.cache.disk.capacity", 1024000); pref("browser.cache.disk.max_entry_size", -1)

I am trying to build a CHannel-prefs.js file that I can deploy via script to 300 non-domain laptops. I need to change the firefox to have cach size 1024MB but the following two commands are not changing it. pref("browser.cache.disk.capacity", 1024000); pref("browser.cache.disk.max_entry_size", -1)

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

more options

You can use a mozilla.cfg file in the Firefox program folder to lock prefs or specify new (default) values.

Place a local-settings.js file in the defaults\pref folder where also the channel-prefs.js file is located to specify using mozilla.cfg.

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

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

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

See: