Where did you install Firefox from? Help Mozilla uncover 3rd party websites that offer problematic Firefox installation by taking part in our campaign. There will be swag, and you'll be featured in our blog if you manage to report at least 10 valid reports!

Search Support

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

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

  • 1 பதிலளி
  • 1 இந்த பிரச்சனை உள்ளது
  • 10 views
  • Last reply by cor-el

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)

All Replies (1)

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: