Im working on a deployment package for Mozilla Firefox 106.0.1 when launching Firefox on a brand new user it automatically creates a shortuct for private browsing. Im loo… (read more)
Im working on a deployment package for Mozilla Firefox 106.0.1 when launching Firefox on a brand new user it automatically creates a shortuct for private browsing. Im looking for a way to disable this as the package im creating is an appv package and this new shortcut installs in users profile, so it won't be uninstalled. I have searched google but cant find any hits.
We have the following for customization:
Application directory\defaults\pref: localsettings.js with these settings:
pref("general.config.obscure_value", 0); // only needed if you do not want to obscure the content with ROT-13
pref("general.config.filename", "mozilla.cfg");
Application directory\mozilla.cfg with these settings:
// Don't show WhatsNew on first run after every update
pref("browser.startup.homepage_override.mstone","ignore");
// Don't show 'know your rights' on first run
pref("browser.rights.3.shown", true);
// Disable Policy Notice on First Run
pref("toolkit.telemetry.reportingpolicy.firstRun", false);
// Disable checkDefaultBrowser
lockPref("browser.shell.checkDefaultBrowser", false);
Application directory\distribution\policies.json with the following settings:
{
"policies": {
"DisableAppUpdate": true,
"DontCheckDefaultBrowser": true
}
}