Windows Updates

Feature updates vs quality updates explained

Practical Windows guide: feature updates vs quality updates explained without the usual guesswork.

10 min read Beginner Updated 9 Jun 2026

Step-by-step guide

Work through each section in order. Stop when your issue is resolved — you do not need every step for every situation.

What you will achieve

Tell feature updates apart from quality (security) updates, know what each changes, and plan reboots and testing accordingly.

1) Quality updates (monthly)

  1. Released on Patch Tuesday (second Tuesday of each month) as cumulative updates.
  2. Include security fixes, bug fixes, and sometimes driver updates — they do not change the Windows version number majorly.
  3. View history: Settings → Windows Update → Update history. Look for entries labelled Update Stack or Security Update.

2) Feature updates (annual or semi-annual)

  1. Move Windows to a new version (e.g. 22H2 → 23H2 → 24H2). The version changes under Settings → System → About.
  2. Larger download, longer install, more reboots, and higher risk of app or driver incompatibility.
  3. On Pro, defer via Group Policy: Select when Preview Builds and Feature Updates are received.

3) Identify what is pending

  1. Settings → Windows Update shows a feature update as a distinct large download with a version name (e.g. Windows 11, version 24H2).
  2. Quality updates appear as cumulative updates with KB numbers (e.g. KB5034765).

4) Practical handling

  1. Install quality updates promptly — they close security holes.
  2. Delay feature updates until your line-of-business apps and drivers are certified for the new version.
  3. Before a feature update, create a restore point or system image if you rely on specialised software.

5) Uninstall a feature update rollback window

  1. Settings → System → Recovery → Go back appears for ~10 days after feature upgrade if rollback files remain.
  2. Disk Cleanup removing previous Windows installation removes rollback option.

6) Read version with PowerShell

Get-ItemProperty "HKLM:\SOFTWARE\Microsoft\Windows NT\CurrentVersion" | Select-Object DisplayVersion, UBR

7) End of servicing dates

  1. Each Windows version has an end date — quality updates stop when version falls out of support.
  2. Check lifecycle at Microsoft lifecycle documentation for your DisplayVersion string.

8) Enablement packages

Some “version bumps” ship as enablement packages (small download activating 24H2 features already on disk) — still count as feature updates in history.

  1. Check Update history for “Windows 11 Version 24H2 enablement package” style entries.
  2. Reboot once after enablement — partial activation causes odd Settings version mismatches.

Verification checklist

Record DisplayVersion before and after each feature upgrade. Quality updates should not change DisplayVersion — if it jumps unexpectedly, you installed a feature package disguised as cumulative.

  1. Reboot once after changes that affect services, drivers, or firmware.
  2. Confirm the original problem is resolved under normal daily use, not only immediately after the fix.
  3. Note date, Windows version (Settings → System → About), and what changed in your personal runbook for next time.

Related guides

feature quality update vs windows