为提升您的使用体验,本站正在维护,部分功能暂时无法使用。如果本站文章无法解决您的问题,您想要向社区提问的话,请到 Twitter 上的 @FirefoxSupport 或 Reddit 上的 /r/firefox 提问,我们的支持社区将会很快回复您的疑问。

搜索 | 用户支持

防范以用户支持为名的诈骗。我们绝对不会要求您拨打电话或发送短信,及提供任何个人信息。请使用“举报滥用”选项报告涉及违规的行为。

详细了解

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