Quick fix: Open Settings → Windows Update → Advanced options → Pause updates — set to 5 weeks. For longer deferral, use Group Policy (Windows 11 Pro) at Computer Configuration → Administrative Templates → Windows Components → Windows Update → Manage updates offered → Select when Preview Builds and Feature Updates are received. Set Enabled, defer 365 days.
A new Windows 11 feature update (e.g., 24H2) released. You need to wait — maybe a critical app isn’t certified for it, your VPN client breaks, or your audio driver doesn’t support it. Settings → Windows Update offers a 5-week pause; for longer holds you need Group Policy or registry.
Affects: Windows 11 Home and Pro (Pro has Group Policy; Home uses registry).
Fix time: ~5 minutes.
What causes this
Windows Update has three update categories: Cumulative Updates (monthly security and quality fixes — can be paused max 5 weeks per Settings), Feature Updates (annual large updates that change Windows version), and Driver Updates. Feature updates can be deferred separately from cumulative ones; Group Policy and the WUfB registry support deferrals up to 365 days for feature updates.
Microsoft also offers Servicing Channels: Windows 11 Pro and Enterprise can switch to LTSC channel for multi-year stability without feature updates — but LTSC requires reinstalling Windows from an LTSC image, not a toggle.
Method 1: Defer via Settings pause (5 weeks max)
The quick option.
- Open Settings → Windows Update.
- Click Pause updates. Pick the maximum (5 weeks ahead).
- Updates are deferred. Windows shows the resumption date.
- To extend: when you reach 5 weeks, you can click Pause for 5 more weeks if available. Some builds limit this.
- Settings pause works for both cumulative and feature updates — nothing installs during the pause window.
- To resume early: click Resume updates.
This is the simplest path for short-term deferral.
Method 2: Defer feature updates via Group Policy (Pro/Enterprise)
For deferrals beyond 5 weeks.
- Open Group Policy Editor:
gpedit.msc. - Navigate to Computer Configuration → Administrative Templates → Windows Components → Windows Update → Manage updates offered from Windows Update.
- Open Select when Preview Builds and Feature Updates are received.
- Set to Enabled.
- Pick a Branch readiness level: Semi-Annual Channel for stable releases.
- Set How many days you want to defer feature updates: up to 365.
- Click OK. Run
gpupdate /forcein Terminal (Admin) to apply. - Also configure Select when Quality Updates are received to defer cumulative (security) updates if needed — max 30 days.
- For pausing feature update installs: Manage end user experience → Configure Automatic Updates → Enabled → configure schedule.
This is the right path for long-term deferral on Windows 11 Pro.
Method 3: Defer via registry (Windows 11 Home)
For Home edition, which doesn’t have gpedit.
- Open Registry Editor.
- Navigate to
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate. Create the keys if missing. - Create these DWORD values:
- DeferFeatureUpdates = 1
- DeferFeatureUpdatesPeriodInDays = 365 (decimal)
- DeferQualityUpdates = 1
- DeferQualityUpdatesPeriodInDays = 30 (decimal)
- For pausing: create PauseFeatureUpdatesStartTime as REG_SZ (string) with value
YYYY-MM-DDTHH:MM:SSZ(ISO 8601 UTC date). E.g.,2026-06-01T00:00:00Z. - And PauseFeatureUpdates = DWORD 1.
- Reboot. Settings → Windows Update should show the feature update as deferred.
- To restore default behavior: delete the entries or set values back to 0.
- Caveat: Microsoft has been removing some WUfB options for Home users in recent builds. Test that your specific changes persist.
This is the right path when gpedit isn’t available.
How to verify the fix worked
- Open Settings → Windows Update. Should display deferral status or pause date.
- Run
Get-WindowsUpdate -IsPendingin PowerShell (if PSWindowsUpdate module is installed) to see pending vs. deferred updates. - Wait through the deferral period — the feature update should not auto-download even when newer cumulative updates do.
- For deeper verification: check Group Policy was applied with
gpresult /h C:\gpresult.html→ search for Feature Updates section.
If none of these work
If feature update still tries to install despite deferral settings, the cause is usually one of: Windows Update Orchestrator may have already started download before the policy applied. Cancel: Settings → Windows Update → if download is in progress, click Pause. Built-in Windows Update for Business policies override your settings: this happens on PCs joined to Azure AD with Intune policies. Contact IT to extend deferral. For PCs where you must absolutely block a specific build: download wushowhide.diagcab from Microsoft. Run it. Hide the specific feature update. Windows Update won’t offer it even when checked. For PCs with End-of-Service approaching: deferral expires after Microsoft’s support window for your current Windows version ends. Once expired, security updates stop. Plan to upgrade before end-of-service to maintain security. For LTSC consideration: Windows 11 Enterprise LTSC 2024 provides ~5 years of security updates without feature changes. Requires Volume Licensing.
Bottom line: Settings → Pause updates for 5 weeks short-term. Group Policy → Defer feature updates 365 days for Pro. Registry equivalent on Home edition. Defer doesn’t mean “forever” — security support ends with version end-of-service.