Cerca nel supporto

Attenzione alle mail truffa. Mozilla non chiederà mai di chiamare o mandare messaggi a un numero di telefono o di inviare dati personali. Segnalare qualsiasi attività sospetta utilizzando l'opzione “Segnala abuso”.

Learn More

Questa discussione è archiviata. Inserire una nuova richiesta se occorre aiuto.

Can't set network.trr.mode via user.js

  • 3 risposte
  • 1 ha questo problema
  • 19 visualizzazioni
  • Ultima risposta di rurbanowtreefox

more options

I work in a Windows enterprise environment that want to implement the following setting in Firefox 69.03: user_pref("network.trr.mode", "5");

I have a one line user.js file and place it where the prefs.js is located. The changed setting is never picked up by Firefox. What am I doing wrong? Thanks.

I work in a Windows enterprise environment that want to implement the following setting in Firefox 69.03: user_pref("network.trr.mode", "5"); I have a one line user.js file and place it where the prefs.js is located. The changed setting is never picked up by Firefox. What am I doing wrong? Thanks.

Tutte le risposte (3)

more options

hi, please try the following instead (no quotes around the integer):

user_pref("network.trr.mode", 5);
more options

Soluzione scelta

more options

Thank you. That fixed it.