HomeNewsletterCommunityToolsArchiveBlogToday's NewsAboutQuick Links Subscribe free
← Back to Blog
Windows 11 Windows 11Windows BackupDevice ManagementIntuneResilience26H2

Windows Settings Backup Is On by Default From 26H2 — What You Need to Do Before It Hits Your Fleet

IA
Imran Awan
9 July 2026

What Just Changed

Starting with Windows 11, version 26H2, eligible devices will have Windows settings backup turned on by default. If your backup policy is currently set to Not Configured — which is the case for most environments that have never explicitly touched this feature — backup will start running automatically when 26H2 lands on those devices.

This is a change to the default state, not a forced policy override. Explicit policy always wins. The default-on only applies to devices where the backup policy has never been touched by Intune, Group Policy, or any MDM solution.

The feature has also been renamed. Windows Backup for Organizations is now called Windows settings backup and restore. If you have been searching for it in Intune Settings Catalog or Group Policy under the old name, start looking under the new one — documentation is being updated progressively.

Available now in the Windows Insider Program Experimental channel. General availability ships with Windows 11, version 26H2 in the second half of 2026.

⚠ Critical — Restore Is NOT On by Default

The default-on change applies to backup only. The restore function — which brings settings and app list back to a device after a reset or replacement — is still off by default and requires explicit admin configuration. A device that is automatically backing up will not automatically restore. Backup and restore are two separate policies you control independently. Do not assume one implies the other.

Why Microsoft Made Backup a Baseline

The framing from Microsoft is deliberate: settings backup is now positioned as a resilience baseline — in the same category as BitLocker or secure boot. Not something IT opts into during a project, but something that is simply on, because devices get lost, reset, and replaced as a normal operational event.

The operational case is straightforward. When a laptop is lost, stolen, or goes through a hardware refresh, the device needs to be reset or reimaged. Without backup, that user loses their Windows settings and their Microsoft Store app list — everything that made the device feel familiar and configured correctly. With backup on by default, that configuration is already captured before the incident happens, and restore can bring it back automatically.

Microsoft validated this internally at scale. Brian Fielder, VP at Microsoft Digital, put it plainly: settings and Store apps now move seamlessly with employees across device replacements, removing the heavy lifting of manual reconfiguration. The goal is that a device replacement feels like picking up where you left off, not starting from scratch.

Exactly Which Devices Are In Scope

The default-on behaviour applies only to devices that meet all four of the following conditions simultaneously. Missing any single condition means the device stays on its current behaviour.

# Condition Detail
1 Windows 11, version 26H2 or later 26H2 is the annual feature update for devices on Windows 11 24H2 or 25H2. Not available on earlier Windows versions.
2 Not in EU/DMA-regulated countries or regions Countries covered by the EU Digital Markets Act (DMA) are excluded. Devices in those regions stay off by default.
3 Not in sovereign or restricted cloud GCC, GCC-High, DoD, and other restricted cloud environments are excluded entirely.
4 Backup policy is Not Configured If backup has ever been explicitly enabled or disabled via Intune, GPO, or MDM, that explicit state is honoured. The default-on does not override an explicit setting either way.

Devices That Stay Off by Default

Device type Status Note
EU/DMA country devices Off by default Privacy/DMA regulations. You can still enable explicitly via policy if desired.
Sovereign/restricted cloud (GCC, GCC-H, DoD) Off by default Data residency and compliance restrictions apply.
Devices with an explicit policy (enabled or disabled) Explicit setting honoured Your configured state is preserved. The 26H2 default does not override it in either direction.
Devices on Windows 11 24H2, 23H2, or earlier Off by default Default-on does not backport to earlier Windows 11 versions.
Devices originally on Windows 11, version 26H1 Gets it with the next feature update 26H1 devices are temporarily exempt but receive the same default-on treatment with the following annual feature update.
⚠ Gotcha — Mixed EU and Non-EU Fleets

If your organisation spans EU countries and non-EU countries, you will end up with a split backup posture after 26H2 rolls out. Non-EU devices with Not Configured policy will have backup on. EU devices with the exact same Not Configured policy will remain off. If you need a consistent posture across all regions — backup on everywhere, or off everywhere — you must set the policy explicitly rather than relying on the default. Do not rely on device geography to manage your backup posture.

What Gets Backed Up

This is not a full system backup. It is not OneDrive file sync. It is not a Windows restore point. Windows settings backup captures two specific categories of data:

This distinction matters when communicating upward and to end users. Documents, browser data, and desktop files are not in scope — that is OneDrive's job. Settings and Store apps are the gap that this feature fills: the configuration layer between a clean Windows image and a device that feels like the user's own.

Windows Settings › Accounts › Windows Backup (simulated — Windows 11 26H2)
Windows Backup
Back up your settings and apps to restore them on this or another device.
Settings backup
Back up your personalisation, accessibility, language, and taskbar preferences
App list
Remember which Microsoft Store apps you have installed so they can be restored later
Restore on this device
Requires explicit admin configuration — off by default, configured separately from backup

How to Check Your Current Policy State

Before 26H2 ships to your fleet, you should know exactly what state your backup policy is in. Devices with Not Configured policy are the ones where the default-on will take effect at upgrade time.

In Intune, go to Devices › Configuration › Policies and filter for any policies targeting Windows Backup settings. If you have no policy covering this feature, your non-EU, non-sovereign devices will get backup turned on automatically when they upgrade to 26H2.

Microsoft Intune admin center — Devices › Configuration › Create › Settings catalog (simulated)
🔍 Search settings: Windows settings backup
Results — Windows Backup category
Allow backup
Windows Backup › Enables or disables the Windows settings backup feature on the device
Add
Allow restore
Windows Backup › Enables or disables restore — configure separately from backup
Add
For exact policy names and OMA-URI paths, see the Windows Backup CSP documentation on Microsoft Learn.

To check the current policy state on a device directly, the script below looks for the Windows Backup policy registry key. If the key does not exist, the device is in the Not Configured state and will follow the default-on behaviour after upgrading to 26H2.

Check-WindowsBackupPolicyState.ps1 — run as Administrator
# Determine whether Windows Backup policy has been explicitly configured
# Run as Administrator on each device, or deploy via Intune script

$gpPath  = "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsBackup"
$mdmPath = "HKLM:\SOFTWARE\Microsoft\PolicyManager\current\device\WindowsBackup"

$gpExists  = Test-Path $gpPath
$mdmExists = Test-Path $mdmPath

if (-not $gpExists -and -not $mdmExists) {
    Write-Host "[NOT CONFIGURED] No backup policy found." -ForegroundColor Yellow
    Write-Host "This device will have backup ENABLED by default when upgraded to Windows 11 26H2."
    Write-Host "Action: Decide your desired state and set the policy explicitly before 26H2 arrives."
} else {
    Write-Host "[CONFIGURED] Explicit policy exists — 26H2 default will NOT apply." -ForegroundColor Green
    if ($gpExists)  {
        Write-Host "GP path  : $gpPath"
        Get-ItemProperty $gpPath  | Format-List
    }
    if ($mdmExists) {
        Write-Host "MDM path : $mdmPath"
        Get-ItemProperty $mdmPath | Format-List
    }
}

The Three Admin Decisions

Microsoft gives you three valid postures. Pick one and make it explicit. Relying on the default is not an admin-managed state — it is an audit gap.

Decision 1 — Accept the Default and Make It Explicit

For most commercial environments outside the EU, keeping backup on is the right call. No behavioural change required on eligible devices — backup starts automatically with 26H2. Microsoft's recommendation is to set the policy to Enabled explicitly regardless of whether you want the backup on, because an explicit Enabled policy gives you an audit trail and the ability to scope backup by device group via Intune assignments rather than relying on the blanket default.

✓ Tip — Set Enabled Explicitly Even If You Want the Default On

Setting the policy to Enabled today costs nothing and gives you a clean audit trail. If a compliance auditor asks whether backup was intentionally configured or happened by accident, an explicit Enabled policy is a far better answer than Not Configured. Set it before 26H2 ships so your policy baseline reflects deliberate intent, not omission.

Decision 2 — Opt Out

If your organisation needs backup off — data residency requirements, legal holds, a regulatory position on cloud-synced settings, or simply a preference not to send configuration data to Microsoft's cloud — set the backup policy to Disabled explicitly via Intune, Group Policy, or your MDM solution. An explicit Disabled setting takes precedence over the default-on both now and in future Windows releases. You will not need to revisit this for every future version.

Decision 3 — Enable Restore for the Full Replacement Workflow

Backup and restore are separate policies. Having backup on does not automatically enable restore. If you want the full device replacement experience — where a user gets their settings and app list back automatically on a new or reset device — you need to configure the restore policy separately. This is the configuration that actually changes the replacement-day experience for end users. It requires explicit setup and is covered in the Microsoft Intune documentation linked in the References section.

Registry Editor (simulated) — Explicit policy set, backup Enabled, restore Disabled
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsBackup
AllowBackup REG_DWORD 0x00000001 (1 = Enabled)
AllowRestore REG_DWORD 0x00000000 (0 = Disabled)
If this registry key path does not exist: device is Not Configured and will follow the 26H2 default-on for eligible devices

The Device Replacement Workflow Change

Here is what the default-on change means in practice for the device lifecycle workflow your helpdesk runs today.

Scenario Without backup + restore With backup on + restore configured
Lost or stolen laptop Replacement device starts clean. User reconfigures everything manually or raises a helpdesk ticket to rebuild their setup. User signs into replacement device and their settings and app list restore automatically at first sign-in.
Hardware refresh IT must image and configure each device individually. Productivity loss during transition while the user adapts to a generic setup. New device restores the user's familiar layout and apps. Reduced per-device IT effort on refresh projects.
Unexpected OS reset Discover backup was never configured. No recovery path for user settings. Settings rebuild is a manual process. Backup was already running before the reset. Settings and app list restore automatically once the device is back online.
New employee onboarding Each device is a blank slate regardless of the previous user's configuration preferences. Device restore is user-scoped, so a reassigned device does not inherit the previous user's settings.

The 26H1 Exception and Phased Rollout

Devices that were originally running Windows 11, version 26H1 are temporarily exempt from the 26H2 default-on. They will receive the same default-on treatment with the following annual feature update. This is a phased rollout by design, not a permanent exclusion.

ℹ Info — The 26H1 Exception Means You Will Have Mixed States

If your fleet spans devices on 26H1 and devices that upgraded directly to 26H2, you will have different default backup states across the fleet even though both cohorts have the same Not Configured policy. 26H2 devices get backup on; 26H1 devices stay off until the next feature update. If you need a consistent posture today, set the policy explicitly rather than waiting for each device's update cycle to catch up. Mixed states are harder to audit and explain than a single deliberate policy assignment.

Action Checklist Before 26H2

  1. Run the policy state check script above against a sample of devices to confirm how many are in the Not Configured state. For fleet-wide visibility, deploy it as an Intune script and review the output report.
  2. Decide your posture per device segment — backup on for most, backup off for EU or sovereign cloud devices, or a uniform explicit-on policy for everything. Document the decision.
  3. Create or update your Intune policy to set backup (and restore, if desired) explicitly via Settings Catalog. Assign to the appropriate device groups before 26H2 reaches your fleet.
  4. Configure restore separately if you want the full replacement workflow — backup on alone is not enough. Restore requires its own policy assignment.
  5. Validate on Windows Insider Experimental channel — the feature is available now. Test the end-to-end backup and restore experience on a test device before 26H2 GA.
  6. Update your run books and comms — inform the helpdesk of the change, update your device refresh procedure to reference restore, and set user expectations appropriately.
▶ Video Walkthrough Available

Microsoft published a video walkthrough demonstrating the Windows settings backup and restore experience alongside the original Tech Community announcement. Watch it at the Windows IT Pro Blog post (video embedded on the page).

References

Share this post
LinkedIn X / Twitter Reddit Bluesky

More from EndpointWeekly

Windows 11
Microsoft's AI Is Hunting Windows Vulnerabilities Before…
Microsoft's MDASH — a multi-model AI scanning harness — is now hunting Windows…
Guides
Microsoft Intune Complete Roadmap: Beginner to Advanced (All 12…
A structured 12-chapter roadmap covering everything in Microsoft Intune — from…
Intune
Microsoft Store Apps in Intune — Deployment & Troubleshooting,…
Store for Business is gone — modern Intune Store apps are winget-backed. The full…