為了改善您的使用體驗,本網站正在進行維護,部分功能暫時無法使用。若本站的文件無法解決您的問題,想要向社群發問的話,請到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 發問,我們的社群成員將很快會回覆您的疑問。

搜尋 Mozilla 技術支援網站

防止技術支援詐騙。我們絕對不會要求您撥打電話或發送簡訊,或是提供個人資訊。請用「回報濫用」功能回報可疑的行為。

了解更多

need script to reset the Firefox browser cache size to the desired value

  • 5 回覆
  • 1 有這個問題
  • 1 次檢視
  • 最近回覆由 mail2vij

more options

I am looking for a script to execute the below tasks for more than 50+ servers for this i need a powershell or vbscript

to reset the Firefox browser cache size to the desired value, which improves the browser performance. The optimal value is configured to 20 MB. This optimization does not clean the cookies and browsing history. Supported Firefox Version: 30

I am looking for a script to execute the below tasks for more than 50+ servers for this i need a powershell or vbscript to reset the Firefox browser cache size to the desired value, which improves the browser performance. The optimal value is configured to 20 MB. This optimization does not clean the cookies and browsing history. Supported Firefox Version: 30

所有回覆 (5)

more options

I don't think FF can go beyond what is in the FF Broswer itself. Anything beyond that is from 3rd party software that you will use to do what your asking.

more options

That would require to modify this pref:

  • browser.cache.disk.capacity

You would have to create a script that can edit prefs.js in the profile folder or possibly use a mozilla.cfg in the Firefox installation folder to set this pref.

See Configuration:

You can use the button on the "Help -> Troubleshooting Information" (about:support) page to go to the current Firefox profile folder or use the about:profiles page.


You can use the mozilla.cfg file in the Firefox program folder to initialize (set/lock) preferences and run privileged JavaScript code.

The mozilla.cfg file needs to be in the main Firefox program folder (Mac).

These functions can be used in mozilla.cfg:

defaultPref();	// set new default value, requires special data: format for localized prefs
pref();	// set pref, allow changes in current session
lockPref();	// lock pref, disallow changes

This requires a local-settings.js file in the "defaults/pref" folder where the channel-prefs.js file is located that specifies to use mozilla.cfg.

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

The mozilla.cfg and local-settings.js files need to start with a comment line (//).

See also:

more options

though the information provided is helpful but i am not well versed with Javascript and still i am not able to understand how to fix browser.cache.disk.capacity to certain value.

can you please provide me the right example of this?

more options

I tired to create two files mozilla.cfg and local-settings.js but getting error while opening firefox this time that unable to read the configuration file

mozilla.cfg : under C:\Program Files (x86)\Mozilla Firefox

// defaultPref("browser.startup.homepage","data:text/plain,browser.startup.homepage=http://google.co.in");

pref("browser.rights.3.shown", true);

lockPref("app.update.enabled", false);


================================

local-settings.js under : C:\Program Files (x86)\Mozilla Firefox\defaults\pref

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

more options

i used the below script and it is working fine as expected

@echo off

FOR /F "tokens=*" %%R IN ('dir /B /AD "%APPDATA%\Mozilla\Firefox\Profiles\*.default"') DO CALL:write_settings %%R GOTO:EOF

write_settings

DIR "%APPDATA%\Mozilla\Firefox\Profiles\%1\prefs.js" /AA /B if ERRORLEVEL 1 GOTO:EOF

echo user_pref("browser.download.useDownloadDir", false); >> "%APPDATA%\Mozilla\Firefox\Profiles\%1\prefs.js" echo user_pref("browser.tabs.autoHide", false); >> "%APPDATA%\Mozilla\Firefox\Profiles\%1\prefs.js" echo user_pref("browser.cache.disk.capacity", 30000); >> "%APPDATA%\Mozilla\Firefox\Profiles\%1\prefs.js" echo user_pref("dom.disable_open_during_load", false); >> "%APPDATA%\Mozilla\Firefox\Profiles\%1\prefs.js"


ATTRIB -A "%APPDATA%\Mozilla\Firefox\Profiles\%1\prefs.js" GOTO:EOF