Windows 10 reached EOS (end of support) on October 14, 2025. For more information, see this article.

Hilfe durchsuchen

Vorsicht vor Support-Betrug: Wir fordern Sie niemals auf, eine Telefonnummer anzurufen, eine SMS an eine Telefonnummer zu senden oder persönliche Daten preiszugeben. Bitte melden Sie verdächtige Aktivitäten über die Funktion „Missbrauch melden“.

Weitere Informationen

Using about config to disable password for logins

  • 4 Antworten
  • 3 haben dieses Problem
  • 345 Aufrufe
  • Letzte Antwort von hs-sd

Weitere Optionen

Hi All,

I managed to find one or two posts relevant to my question, however I have tried these settings and they can still be changed by the user.

What I wanted to know is, when going under the FireFox options > Security, is there a way to totally disable the "Remember logins for sites"? I know this can be unticked and have found an option in about:config - signon.rememberSignons;false. All this seems to do is untick it but still allows the user to go in and tick the box again.

I have also found the following preference; signon.autofillForms;false and this helps in someway as when I try to login to services that require a username/password it no longer asks to save the credentials or prompt you with any that it has saved previously when clicking on the box to type it in.

Is there anyway I can totally disable the "Remember logins for sites" option by greying it out or atleast preventing users from ticking it again?

Hi All, I managed to find one or two posts relevant to my question, however I have tried these settings and they can still be changed by the user. What I wanted to know is, when going under the FireFox options > Security, is there a way to totally disable the "Remember logins for sites"? I know this can be unticked and have found an option in about:config - signon.rememberSignons;false. All this seems to do is untick it but still allows the user to go in and tick the box again. I have also found the following preference; signon.autofillForms;false and this helps in someway as when I try to login to services that require a username/password it no longer asks to save the credentials or prompt you with any that it has saved previously when clicking on the box to type it in. Is there anyway I can totally disable the "Remember logins for sites" option by greying it out or atleast preventing users from ticking it again?

Ausgewählte Lösung

See also Configuration:


mozilla.cfg in main Firefox program folder:

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

local-settings.js file in the "defaults/pref" folder (this folder contains the channel-prefs.js file that specifies the update channel).

pref("general.config.filename", "mozilla.cfg");
pref("general.config.obscure_value", 0);
Diese Antwort im Kontext lesen 👍 0

Alle Antworten (4)

Weitere Optionen

hi hs-sd, if you want to lock certain settings please refer to this article on how to do that: http://kb.mozillazine.org/Locking_preferences

Weitere Optionen

philipp said

hi hs-sd, if you want to lock certain settings please refer to this article on how to do that: http://kb.mozillazine.org/Locking_preferences

Hi Philipp,

Thanks for the quick response. I have had a quick look browse through the link and this seems to be on the right track.

I will give this a try and let you know how i get on.

Many thanks once again.

Weitere Optionen

Ausgewählte Lösung

See also Configuration:


mozilla.cfg in main Firefox program folder:

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

local-settings.js file in the "defaults/pref" folder (this folder contains the channel-prefs.js file that specifies the update channel).

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

cor-el said

See also Configuration:

mozilla.cfg in main Firefox program folder:

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

local-settings.js file in the "defaults/pref" folder (this folder contains the channel-prefs.js file that specifies the update channel).

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

cor-el thanks very much for your post as I have now managed to disable the "remember logins for sites" and it now greys it out and prevents any credentials from being saved.