MS Edge first time Welcome back, confirming preferences - wizard pops up

Pavel yannara Mirochnitchenko 12,661 Reputation points MVP
2024-11-27T06:35:58.5166667+00:00

This problem is seing also within other admins in our User Group, and in my enviroment I have configured several configuration options to not present this, but it still does. I remember, that my Edge configuration has been done some time ago, and this pop-up started appearing sometime July 2024 out of nothing. Probably Edge has been updated then and something changed.

User's image

#Allow personalization of ads, search and news by sending browsing history to Microsoft - Disabled
#Browser sign-in settings (Device) - Enable browser sign-in
#Configure whether a user always has a default profile automatically signed in with their work or school account - Disabled
#Disable synchronization of data using Microsoft sync services - Disabled
#Force synchronization of browser data and do not show the sync consent prompt - Enabled
#Hide the First-run experience and splash screen - Enabled
#Send required and optional diagnostic data about browser usage - Disabled
#Choose whether users can receive customized background images and text, suggestions, notifications, and tips for Microsoft services - Disabled

Microsoft Edge
Microsoft Edge
A Microsoft cross-platform web browser that provides privacy, learning, and accessibility tools.
2,399 questions
Windows
Windows
A family of Microsoft operating systems that run across personal computers, tablets, laptops, phones, internet of things devices, self-contained mixed reality headsets, large collaboration screens, and other devices.
5,652 questions
Windows 11
Windows 11
A Microsoft operating system designed for productivity, creativity, and ease of use.
10,278 questions
Microsoft Intune Configuration
Microsoft Intune Configuration
Microsoft Intune: A Microsoft cloud-based management solution that offers mobile device management, mobile application management, and PC management capabilities.Configuration: The process of arranging or setting up computer systems, hardware, or software.
1,953 questions
Microsoft Intune
Microsoft Intune
A Microsoft cloud-based management solution that offers mobile device management, mobile application management, and PC management capabilities.
5,365 questions
0 comments No comments
{count} vote

Accepted answer
  1. Mark Kruger 75 Reputation points Microsoft Employee
    2024-12-16T21:24:07.7666667+00:00

    Hello @Pavel yannara Mirochnitchenko thanks for the report on this issue. Looking through the details in some of the other answers and the replies, there are few things to untangle.

    First is getting through some of the confusion of managing the legacy version of Microsoft Edge that uses UWP and EdgeHTML (that Microsoft folks sometimes refer to by the project name "Spartan" to for an easier reference name that I'll use here) and the current version of Microsoft Edge running Chromium.

    The web post referred to in the Microsoft vendor response https://www.thewindowsclub.com/disable-microsoft-edge-first-run-welcome-page is focused on configuring the legacy version of Edge, not the current version. Please ignore the details in this article. The legacy version of Edge has many very similar policies and the registry location the ADMX targets is confusingly very similar as well. 

    From your list of policies from your question in the Q&A, it does appear that you are looking at the right documentation and policy names for the current version of Edge but were targeting the wrong registry location in your scripting examples. 

    In the registry you need to target ✅:

    HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Microsoft\Edge

    NOT 🚫:

    HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\MicrosoftEdge

    * Notice the path separator between "Microsoft" and "Edge"

    For the policies you listed you are trying to set, here is the contents of a .reg file to set them as an example: 

    Windows Registry Editor Version 5.00
    
    [HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Edge]
    "SpotlightExperiencesAndRecommendationsEnabled"=dword:00000000
    "DiagnosticData"=dword:00000000
    "HideFirstRunExperience"=dword:00000001
    "NonRemovableProfileEnabled"=dword:00000000
    "PersonalizationReportingEnabled"=dword:00000000
    "BrowserSignin"=dword:00000001
    "ForceSync"=dword:00000001
    "SyncDisabled"=dword:00000000
    

    In my testing of these settings, Microsoft Edge v131.0.2903.99 did not show any first run, or "second chance" first run dialogs on subsequent full restarts of the browser. To note "second chance" first run dialog logic is different for EU DMA regions. I tried to simulate this environment in my testing, but actual conditions may be different.

    A few other things to point out.

    I was able to find all of the policies you listed within Intune's Settings Catalog. Settings Catalog is Intune's location for setting Edge policies going forward so you should be able to set all this through Intune now and in the future. Here is an example configuration profile from Intune with all the settings:

    User's image

    ❗Be mindful of the settings for:

    Send required and optional diagnostic data about browser usage - Disabled

    The way you have this worded is incorrect if you set it exactly like this to "Disabled". It should be:

    Send required and optional diagnostic data about browser usage - Enabled, set to "Off (Not recommended)"

    [Note: this question was asked in an internal Microsoft forum as well. This response is a version of a response I made in that forum to provide the information in this more public forum as well]


2 additional answers

Sort by: Most helpful
  1. ZhoumingDuan-MSFT 14,870 Reputation points Microsoft Vendor
    2024-11-27T08:23:16.4166667+00:00

    @Pavel yannara Mirochnitchenko, Thanks for posting in Q&A.

    From your description, I know want to disable the Microsoft Edge first time welcome back page but failed.

    From the information you provided, I noticed that you have configured related settings to disable it, and it failed some time, to clarify the issue, please be sure the policy applies to device not user, then go to edge://policy and check whether the policy has been successfully applied on Microsoft Edge.

    Moreover, here are some other methods you can refer to disable first time welcome back page, such as GPO or Registry.

    https://www.thewindowsclub.com/disable-microsoft-edge-first-run-welcome-page

    Non-official, just for reference.

    Hope it will help. If there is any update, feel free to let me know.

    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.


  2. Pavel yannara Mirochnitchenko 12,661 Reputation points MVP
    2024-11-28T08:41:58.64+00:00

    (EDIT): Does not solve the problem!

    I manually solved this by adding new registery creation object for device:

    #Disable First Run Welcome Page in Edge browser

    New-Item -Path "Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\MicrosoftEdge"

    New-ItemProperty -Path "Registry::HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\MicrosoftEdge" -Name PreventFirstRunPage -Value "1" -PropertyType DWord -Force

    But the bigger problem is, that there is no "Prevent First Run from opening on Microsoft Edge" - option available in Intune's Setting Catalog do handle this as it should be configured.


Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.