Can't set network.trr.mode via user.js
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.
Chosen solution
Note that you can use an autoconfig.cfg file to initialize/set prefs globally.
- https://support.mozilla.org/en-US/kb/customizing-firefox-using-autoconfig
- https://support.mozilla.org/en-US/kb/customizing-firefox-using-policiesjson
All Replies (3)
hi, please try the following instead (no quotes around the integer):
user_pref("network.trr.mode", 5);
Suluhisho teule
Note that you can use an autoconfig.cfg file to initialize/set prefs globally.
Thank you. That fixed it.