Search 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.

Learn More

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

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.

All Replies (3)

more options

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

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

Chosen Solution

more options

Thank you. That fixed it.