If you use Windows 10 or Windows 11 regularly, you’ve probably seen the increasingly common full-screen prompts that appear after ...
If you use Windows 10 or Windows 11 regularly, you’ve probably seen the increasingly common full-screen prompts that appear after updates or during sign-in.
These screens often encourage users to:
- Switch to Microsoft Edge as the default browser
- Enable Microsoft “recommended settings”
- Subscribe to Microsoft 365 services
- Set up OneDrive syncing
- Link a mobile phone
- Reconfigure privacy or browsing preferences
- Complete the “Windows setup experience” again after major updates
For many users, particularly power users and people who already have preferred software and workflow, these prompts are frustrating and feel intrusive. Fortunately, there's a clean and effective way to suppress much of this behaviour using your Windows registry settings.
What These Nag Screens Actually Are
These prompts are part of several Windows components designed to drive what Microsoft calls:
- Consumer experiences
- Welcome experiences
- Soft landing experiences
- User profile engagement
- Post-update onboarding
The goal is not necessarily malicious, Microsoft wants users to adopt its ecosystem and discover features after updates, but the implementation is intrusive to many power users, especially when prompts repeatedly reappear after feature updates.
Examples include:
“Use Microsoft’s recommended browser settings”
“Finish setting up your device”
“Try Microsoft 365”
“Use Edge for better performance”
“Back up your files with OneDrive”
These experiences are controlled by several internal Windows configuration flags stored in the registry.
The repeated prompts to switch defaults or enable Microsoft services add unnecessary friction for people that have preferred browser usage or provider configs.
These screens can also confuse non-technical users, create accidental configuration changes, or even trigger unwanted software defaults
The Registry Method
One of the cleanest ways to disable these "experiences" is by directly modify the underlying registry values instead. These settings specifically target the Windows onboarding and recommendation framework.
How to Disable the Windows Welcome / Nag Experience
- Open PowerShell as Administrator
Press Start
Type: powershell
Right-click Windows PowerShell
Select: Run as administrator - Run the Following Commands
Copy and paste the entire block below then press enter:
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v SubscribedContent-310093Enabled /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\UserProfileEngagement" /v ScoobeSystemSettingEnabled /t REG_DWORD /d 0 /f
reg add "HKCU\Software\Microsoft\Windows\CurrentVersion\ContentDeliveryManager" /v SoftLandingEnabled /t REG_DWORD /d 0 /f
Restart the computer after applying the registry changes as these changes will usually take effect immediately after reboot.
What These Registry Keys Actually Do
They disable parts of Windows’ “subscribed content” system, which is responsible for various promotional and recommendation experiences. They also disable the “Second Chance Out Of Box Experience” (SCOOBE) framework. This is the system Windows uses to repeatedly present onboarding and “finish setting up your device” experiences after updates or major configuration changes.
Important Notes
This does NOT break Windows Update it simply suppresses much of the onboarding and recommendation layer.
Some prompts may still occasionally appear as Microsoft occasionally introduces new identifiers and new onboarding flows in major Windows releases.
However, these settings significantly reduce the frequency and aggressiveness of the prompts.
Modern versions of Windows increasingly blur the line between operating system functionality and ecosystem promotion. In my opinion, the best user experience would be simply letting the user decide how they want their system configured ONCE.


COMMENTS