搜尋 Mozilla 技術支援網站

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

Learn More

Wheren can I find a Tutorial for deploying Firefox ESR?

  • 3 回覆
  • 1 有這個問題
  • 13 次檢視
  • 最近回覆由 cor-el

more options

I am a none-techie that wants to use Firefox in a company. We are a growing startup and have serious issues regarding password management:

We have a bunch of passwords that need to be available company-wide but should not be known to our employees. We are looking at Lastpass to solve this. But: Lastpass is of no use, if a user can simply activate password-saving in his browser.

Thus we need a way to prevent users from saving passwords they shouldn't know. And maybe event prevent them from installing other password managers, with which they might be able to grab a password.

Can I do all this with Firefox ESR? And if so, where can I learn how to deploy Firefox as a non-techie?

I am a none-techie that wants to use Firefox in a company. We are a growing startup and have serious issues regarding password management: We have a bunch of passwords that need to be available company-wide but should not be known to our employees. We are looking at Lastpass to solve this. But: Lastpass is of no use, if a user can simply activate password-saving in his browser. Thus we need a way to prevent users from saving passwords they shouldn't know. And maybe event prevent them from installing other password managers, with which they might be able to grab a password. Can I do all this with Firefox ESR? And if so, where can I learn how to deploy Firefox as a non-techie?

所有回覆 (3)

more options

I think lot of this is going to be outside the scope of this forum.

For instance would it not be better if globally used company passwords gave access to required locations with suitable permissions. ESR has its own mailing list it is probably better to use that as a source of information about deploying ESR.

Also note this popular add-on and its authors blogs

Another article likely to be of interest

more options

I 2nd that. This guy knows the most about setting up and customizing Firefox ESR. https://mike.kaply.com/category/mozilla/

Unfortunately the entire concept of Firefox ESR is based around IT professionals who know how to deploy programs for organizations, but need a version of Firefox that doesn't change too often as the Release version does every 6 weeks.

more options

You can lock the signon.rememberSignons pref to false if you want to disable the Firefox Password Manager via a mozilla.cfg file in the Firefox program folder.

//
lockPref("signon.rememberSignons", false);

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

See:

See also: