For the love of god how do you disable first-run (welcome) page????
Hi I am looking for a way to disable the Firefox Welcome Page on first run, via script, or registry or config file, I have it coming up on over 1000 Windows 10 pc's running Firefox 64 bit 78.02
I have tried many things and nothing I have done seems to suppress the welcome page.
I tried setting all to blank and none have worked
startup.homepage_welcome_url
startup.homepage_welcome_url.additional
startup.homepage_override_url
Also I have tried in the Policies.json file the following. The welcome page still comes up.
{
"policies": { "OverrideFirstRunPage": "", "OverridePostUpdatePage": "" }
}
被采纳的解决方案
I'm sorry you're seeing this. This was a bug that is fixed in the Firefox released today:
> In previous versions of Firefox, disabling sync or overriding the first run page removed the onboarding messages from the new tab page. This was fixed in bug 1651093.
If you need to do it before today's release. You can do the folllowing:
lockPref("trailhead.firstrun.branches", "nofirstrun-empty"); lockPref("browser.aboutwelcome.enabled", false);
Again, my apologies for missing this.
定位到答案原位置 👍 0所有回复 (8)
Please attach an image as to what you want to remove. I am not able to understand your query. Nevertheless, according to what I understood, you can change the appearance of the first page when firefox loads by going to Preferences > Home and changing the selecting the options as you like it. Also, you can make firefox remember the session by going to Preferences > General, so it always opens up in the same state as you closed it. Hope it helps.
This is what I am trying to suppress....
I think this is what you need:
Type about:config<enter> in the address bar. If a warning screen comes up, press the I Accept the Risk button. At the top of the screen is a search bar.
Change trailhead.firstrun.didSeeAboutWelcome = True
nope the welcome still shows up with
trailhead.firstrun.didSeeAboutWelcome = True
Hi Clivebuckwheat
- As you have previously tried, I believe you should be able to disable the first run page with the Firefox policy: OverrideFirstRunPage <- Not sure why it's not working for you
- Just in case you haven't read them already, here are the docs: https://github.com/mozilla/policy-templates#overridefirstrunpage
- and even more just in case docs: https://support.mozilla.org/en-US/products/firefox-enterprise/policies-customization-enterprise/policies-overview-enterprise
I'll ask a Firefox engineer to take a look.
Cheers! ...Roland
由Roland Tanglao于
In the past we used to do this via browser.startup.homepage_override.mstone = ignore.
You can try if this still works in an autoconfig.cfg file.
// lockPref("browser.startup.homepage_override.mstone", "ignore");
选择的解决方案
I'm sorry you're seeing this. This was a bug that is fixed in the Firefox released today:
> In previous versions of Firefox, disabling sync or overriding the first run page removed the onboarding messages from the new tab page. This was fixed in bug 1651093.
If you need to do it before today's release. You can do the folllowing:
lockPref("trailhead.firstrun.branches", "nofirstrun-empty"); lockPref("browser.aboutwelcome.enabled", false);
Again, my apologies for missing this.