How to Pause Windows 11 Updates Beyond the 35-Day Cap
🔍 WiseChecker

How to Pause Windows 11 Updates Beyond the 35-Day Cap

Quick fix: Use the registry to set FlightSettingsMaxPauseDays under HKLM\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings to any number (e.g., 365), then the Settings > Windows Update pause dropdown shows extended options up to that limit.

Windows 11 caps the in-Settings pause at 5 weeks (35 days). After that, Windows requires you to install pending updates before allowing another pause. For users who legitimately need longer deferrals — production engineers on a build server, content creators in the middle of a long project, anyone on a custom Windows install — a registry tweak removes the 35-day ceiling.

Symptom: Settings → Windows Update → Pause updates dropdown maxes out at 5 weeks; user wants to defer longer.
Affects: Windows 11 Home and Pro (Pro has additional Group Policy options Home doesn’t).
Fix time: ~5 minutes.

ADVERTISEMENT

What causes this

The pause-updates dropdown reads a value from HKLM\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings\FlightSettingsMaxPauseDays. Windows 11 Home and Pro ship with this value set to 35 by default. The dropdown generates its options in week increments up to that cap. Editing the cap is a supported policy — Microsoft uses the same value via Group Policy on Enterprise editions — but the Settings UI doesn’t expose it directly.

Note: deferring quality updates indefinitely is risky for security. Use a longer pause for specific reasons (a critical project deadline, a known-bad recent KB) rather than as a permanent setting.

Method 1: Extend the pause cap via Registry (works on Home and Pro)

The most direct approach. Edits the same registry value Windows uses internally.

  1. Press Win + R, type regedit, press Enter.
  2. Navigate to HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings. Create the keys if any segment is missing.
  3. In the right pane, find FlightSettingsMaxPauseDays. If it doesn’t exist, create it as a DWORD (32-bit) Value.
  4. Double-click it. Set Base to Decimal and enter your desired cap — 365 for one year, 90 for three months, 180 for six months.
  5. Click OK. Close Registry Editor.
  6. Open Settings → Windows Update → Pause updates. The dropdown now shows week increments up to your new cap.
  7. Select the duration you want and click Pause.

The pause is honored exactly like the 5-week version. When the pause expires, Windows installs the pending queue automatically.

ADVERTISEMENT

Method 2: Use Group Policy Editor (Pro/Enterprise only)

Cleaner GUI for the same change. Available on Windows 11 Pro and Enterprise.

  1. Press Win + R, type gpedit.msc, press Enter.
  2. Navigate to Computer Configuration → Administrative Templates → Windows Components → Windows Update → Manage updates offered from Windows Update.
  3. Open Select when Preview Builds and Feature Updates are received. Set to Enabled, choose Semi-Annual Channel if not already, and set the defer period (up to 365 days).
  4. Open Select when Quality Updates are received. Set to Enabled and the defer period (up to 30 days for quality updates, but multiple deferrals stack).
  5. Run gpupdate /force from an elevated Command Prompt.
  6. Verify in Settings → Windows Update — the page now shows policy-controlled defer settings.

Group Policy is the right approach in managed environments where you want consistent defer behavior across many PCs.

Method 3: Completely disable Windows Update service (last resort)

Use only if Methods 1 and 2 don’t apply and you need full update control for a specific reason (offline workstation, single-use kiosk).

  1. Press Win + R, type services.msc, press Enter.
  2. Find Windows Update service. Right-click and choose Properties.
  3. Set Startup type to Disabled, click Stop, then Apply → OK.
  4. Repeat for Windows Update Medic Service and Update Orchestrator Service.
  5. For each: switch to the Recovery tab, set every failure action to Take No Action. This prevents Windows from auto-restarting the services on a schedule.
  6. When you want to update, reverse: set service Startup type back to Manual or Automatic, start it, run Check for updates in Settings.

This is the strongest available block but also the riskiest — your PC won’t receive security patches until you re-enable the service. Use sparingly and re-enable updates as soon as the deferral need ends.

How to verify the fix worked

  • Open Settings → Windows Update → Pause updates. The dropdown should show your extended range (e.g., up to 52 weeks if you set 365 days).
  • Run Get-ItemProperty -Path "HKLM:\SOFTWARE\Microsoft\WindowsUpdate\UX\Settings" -Name FlightSettingsMaxPauseDays in PowerShell. The value matches what you set.
  • Verify pause works: select a long pause, close Settings, reopen — the page should show Updates paused until [your date].

If none of these work

If pause settings still revert to 5 weeks after the registry change, a Group Policy is overriding your setting. Run gpresult /h C:\gpresult.html from an elevated Command Prompt and open the HTML — look in the Windows Update section for policies that set a different value. On corporate or school PCs, IT’s Intune or AD policy will override; you can’t bypass it without admin escalation. For unmanaged Home edition where the change reverts, Windows 11 occasionally resets specific update-related registry values during feature updates — set a registry monitor (e.g., from Process Monitor) on the key for a few days and you’ll see what process is rewriting it. The most common reset trigger is the Windows Update Orchestrator service during its weekly maintenance run; pair the registry change with a scheduled task that re-applies the value daily.

Bottom line: The 35-day pause cap is just a single registry value — bump it to your desired duration and the Settings dropdown shows the new range.

ADVERTISEMENT