Hi,
I'm used to deploying/configuring Firefox in an organization with settings in autoconfig.js, etc.
Recently, I've seen that some settings are honored, others aren't, s… (xem thêm)
Hi,
I'm used to deploying/configuring Firefox in an organization with settings in autoconfig.js, etc.
Recently, I've seen that some settings are honored, others aren't, so I started using policies.json as well as keeping my autoconfig.js.
Can they work together?
In any case, I am unable to disable app update with either of them. I have the following in policies.json:
{
"policies": {
"DisableFirefoxAccounts": true,
"DisablePocket": true,
"DisableAppUpdate": true,
"DontCheckDefaultBrowser": true,
"DNSOverHTTPS": {
"Enabled": false
},
"Certificates": {
"ImportEnterpriseRoots": true
}
"PopupBlocking": {
"Allow": ["http://10.215.144.56:8080",
"https://intranet.mydomain.org"],
"Default": true | false,
"Locked": true | false
}
}
}
I'm also showing a snippet of my autoconfig.js file:
lockPref("app.update.auto", false);
lockPref("app.update.enabled", false);
lockPref("app.update.mode", 0);
lockPref("app.update.service.enabled", false);
lockPref("app.update.disable_button.showUpdateHistory", false);
lockPref("app.update.url", "");
lockPref("app.update.url.details", "");
lockPref("app.update.url.manual", "");
lockPref("signon.rememberSignons", false);
lockPref("extensions.update.enabled", false);
The problem is that when I start Firefox 78.3.0 ESR and go to the about Firefox window, I can see that the app update is not disabled.
How can I make sure that all the above settings in autoconfig.js are actually honored?
Thanks