Tìm kiếm hỗ trợ

Tránh các lừa đảo về hỗ trợ. Chúng tôi sẽ không bao giờ yêu cầu bạn gọi hoặc nhắn tin đến số điện thoại hoặc chia sẻ thông tin cá nhân. Vui lòng báo cáo hoạt động đáng ngờ bằng cách sử dụng tùy chọn "Báo cáo lạm dụng".

Learn More

Is there any way to disable the 'Check Now' button in tools>options>general>Always check to see if firefox is the default browser on startup?

  • 2 trả lời
  • 2 gặp vấn đề này
  • 1 lượt xem
  • Trả lời mới nhất được viết bởi MehdiJohn

more options

Is there any way to disable the 'Check Now' button in tools>options>general>Always check to see if firefox is the default browser on startup?

I'm customizing a firefox distribution and want to remove any option to change the default browser to reduce future helpdesk calls as much as possible.

I've been able to disable and gray out the "Always check to see if Firefox is the default browser" option, but the check now button can still be manually clicked. Any idea if there's any file that can be modified to hide this button or gray it out?

Is there any way to disable the 'Check Now' button in tools>options>general>Always check to see if firefox is the default browser on startup? I'm customizing a firefox distribution and want to remove any option to change the default browser to reduce future helpdesk calls as much as possible. I've been able to disable and gray out the "Always check to see if Firefox is the default browser" option, but the check now button can still be manually clicked. Any idea if there's any file that can be modified to hide this button or gray it out?

Tất cả các câu trả lời (2)

more options

Use a mozilla.cfg file in the Firefox program folder to lock prefs or specify default values.

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

pref("general.config.filename", "mozilla.cfg");
pref("general.config.obscure_value", 0); // use this to disable the byte-shift

See:

You can use these functions in mozilla.cfg:

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

  • lockPref("browser.shell.checkDefaultBrowser", false);
more options

The lockPref mentioned *only* unchecks and disables the checkbox. The *Check Now* button remains available, and still allows for the browser to be set as default through the popup dialog.