Windows 10 reached EOS (end of support) on October 14, 2025. If you are on Windows 10, see this article.

Søg i 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.

Læs mere

How do I disable request to join hello?

  • 1 svar
  • 1 har dette problem
  • 19 visninger
  • Seneste svar af cor-el
  • Arkiveret

My clients are small business to corporate users. They do NOT want people even trying "Hello". To apply fix to everyone is time consuming! What can be done except go to a different browser? How about a "No Thanks" button to opt out!

My clients are small business to corporate users. They do NOT want people even trying "Hello". To apply fix to everyone is time consuming! What can be done except go to a different browser? How about a "No Thanks" button to opt out!

Alle svar (1)

You can set the loop.enabled pref to false on the about:config page to disable Hello and remove the toolbar button.

You 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
//
lockPref("loop.enabled", false);

See: