搜索 | 用户支持

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

Learn More

No effecto of mozilla.cfg

  • 2 个回答
  • 1 人有此问题
  • 2 次查看
  • 最后回复者为 Tibor20

more options

Hello Everyone,

I'm trying to create a new SCCM deployment package using Firefox 50.0. Sadly the .cfg file seem not working. My aim is to disable the auto update function that is working well manually via the about:config.

my local-settings.js contains: pref("general.config.filename", "mozilla.cfg");

mozilla.cfg: //disable application updates Pref('app.update.enabled', false); Pref('app.update.auto', false);

As I read the .cfg is not error tolerated, but it does not work: (for e.g: pref('browser.startup.homepage', 'http://www.google.com'); is also not working.

Any advice?

Thank you in advance!

Hello Everyone, I'm trying to create a new SCCM deployment package using Firefox 50.0. Sadly the .cfg file seem not working. My aim is to disable the auto update function that is working well manually via the about:config. my local-settings.js contains: pref("general.config.filename", "mozilla.cfg"); mozilla.cfg: //disable application updates Pref('app.update.enabled', false); Pref('app.update.auto', false); As I read the .cfg is not error tolerated, but it does not work: (for e.g: pref('browser.startup.homepage', 'http://www.google.com'); is also not working. Any advice? Thank you in advance!

被采纳的解决方案

Hello to you :-)

be sure you have the second line also :

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

thank you

定位到答案原位置 👍 2

所有回复 (2)

more options

选择的解决方案

Hello to you :-)

be sure you have the second line also :

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

thank you

more options

Hello ideato,

Thank you for your fast response and help. Indeed, I forgot to add the second line of the file, and I also find some syntax error on my mozilla.cfg file.

With your advice and some recheck the problem is gone now.

Thank you once again! :)