Windows command prompt showing essential CMD commands on a dark terminal screen

40 Essential Windows Command Prompt Commands You Need to Know

The most powerful troubleshooting tool on your PC has been hiding in plain sight since Windows 95. CMD commands โ€” typed directly into the Windows Command Prompt โ€” let you diagnose network faults, repair corrupted system files, kill runaway processes, and manage routing tables without ever opening a settings menu. Whether you’re on Windows 10 or Windows 11, every command below works the same way and takes under a minute to run.

Open CMD by pressing Windows + R, typing cmd, and hitting Enter. For commands that require administrator privileges (chkdsk, sfc, DISM, netsh firewall), right-click the Start menu and choose Command Prompt (Admin) or Windows Terminal (Admin).

Networking CMD Commands

CMD commands for networking showing ipconfig all output on Windows

Network faults are the number-one reason people reach for the Command Prompt. These command prompt commands give you instant visibility into your IP configuration, DNS cache, and wireless environment.

ipconfig โ€” Your Starting Point for Any Network Problem

Type ipconfig and you instantly see your IPv4 address, subnet mask, and default gateway for every active adapter. Add the /all flag โ€” ipconfig /all โ€” to surface MAC addresses, DHCP server details, DNS server IPs, and lease information. Pipe the output into findstr to filter just the line you need:

ipconfig /all | findstr "IPv4"

ipconfig /release, /renew, and /flushdns

Three commands that fix the majority of everyday connectivity headaches:

  • ipconfig /release โ€” drops your current DHCP-assigned IP address.

  • ipconfig /renew โ€” requests a fresh IP from the DHCP server. Run these back-to-back when a device gets stuck on the wrong address.

  • ipconfig /displaydns โ€” lists every domain your PC has recently resolved, piped through | clip to copy the output directly to your clipboard.

  • ipconfig /flushdns โ€” wipes the local DNS resolver cache. Indispensable after a domain migration or when a site refuses to load despite working on other devices.

nslookup โ€” Query DNS Records Directly

nslookup google.com sends a DNS query and returns the resolved IP address and the responding server. Switch servers on the fly: nslookup google.com 8.8.8.8 queries Google’s public DNS instead of your ISP’s, letting you confirm whether a DNS problem is local or upstream.

ping and ping -t

ping 8.8.8.8 sends four ICMP packets and reports round-trip time and packet loss โ€” the quickest proof of whether your internet path is alive. Add -t for a continuous stream that keeps measuring until you press Ctrl+C, ideal for watching a flaky connection in real time.

tracert and tracert -d

tracert google.com traces the hop-by-hop path between your PC and a destination, showing latency at every router along the way. High latency at hop 3 but fine at hop 10? Your ISP’s backbone is fine; the issue is closer to home. Add -d to skip reverse DNS lookups and get results roughly twice as fast.

netstat โ€” See Every Active Connection

These Windows CMD variants reveal what’s talking to your machine:

  • netstat -af โ€” all active TCP/UDP connections plus the fully qualified domain name of each remote endpoint.

  • netstat -o โ€” appends the Process ID (PID) of the owning application so you can cross-reference with Task Manager.

  • netstat -e -t 5 โ€” refreshes Ethernet statistics every 5 seconds, showing cumulative bytes sent and received in near-real time.

netsh โ€” Advanced Network Shell Commands

The netsh tool is one of the most versatile Windows terminal commands available. Key variants:

  • netsh wlan show wlanreport โ€” generates an HTML report of your Wi-Fi connection history, saved to C:\ProgramData\Microsoft\Windows\WlanReport\.

  • netsh interface show interface โ€” lists every network adapter and its current state (enabled/disabled).

  • netsh interface ip show address | findstr "IP Address" โ€” filters down to just your active IPs.

  • netsh interface ip show dnsservers โ€” confirms which DNS servers each adapter is using.

  • netsh advfirewall set allprofiles state off / on โ€” disables or re-enables Windows Firewall across all profiles. Use only for short-term testing; always turn it back on.

route โ€” View and Manage the Routing Table

route print displays your full IP routing table, useful on machines with multiple network interfaces (e.g., VPN + LAN). route add and route delete let you manually inject or remove static routes โ€” essential for IT administrators managing split-tunnel VPNs.

System Diagnostics and Repair CMD Commands

Windows CMD system repair commands sfc and DISM running in terminal

When Windows starts acting slow or throwing errors, these CMD commands are your first line of defence โ€” no reinstall required.

chkdsk /f and chkdsk /r

chkdsk C: /f scans your drive for file system errors and fixes them automatically. chkdsk C: /r goes further, locating bad sectors and recovering readable data. Both require a restart to run on the active system drive โ€” Windows schedules them for the next boot. Run as administrator.

sfc /scannow โ€” System File Checker

sfc /scannow scans every protected Windows system file and replaces any that are corrupted or missing with a cached clean copy. The scan typically completes in 5โ€“15 minutes and produces a log at %windir%\Logs\CBS\CBS.log. Run this before reaching for a full Windows reinstall.

DISM โ€” Repair the Component Store

If sfc /scannow reports it cannot fix errors, DISM (Deployment Image Servicing and Management) repairs the underlying Windows image store that sfc draws from. Run these three in order:

  1. DISM /Online /Cleanup-Image /CheckHealth โ€” reads a flag in the image to check for known corruption (instantaneous).

  2. DISM /Online /Cleanup-Image /ScanHealth โ€” actively scans the component store (takes a few minutes).

  3. DISM /Online /Cleanup-Image /RestoreHealth โ€” downloads and replaces corrupted components from Windows Update (requires internet; can take 20โ€“30 minutes).

After RestoreHealth completes, run sfc /scannow again โ€” it will now succeed.

powercfg /energy and powercfg /batteryreport

powercfg /energy runs a 60-second power efficiency trace and exports an HTML report flagging battery and power-plan issues. powercfg /batteryreport generates a detailed battery history, showing design capacity versus current full-charge capacity โ€” the single best way to confirm whether a laptop battery is degrading. Both commands save their reports to the current working directory.

Command Prompt Commands for Processes and File Associations

Command prompt commands tasklist and taskkill managing Windows processes

These lesser-known command prompt commands are enormously practical once you know they exist.

tasklist and taskkill

tasklist prints every running process with its PID, memory usage, and session name โ€” the CLI equivalent of Task Manager’s Details tab. Filter it: tasklist | findstr "chrome" shows only Chrome-related processes. To terminate a frozen process: taskkill /PID 1234 /F forces an immediate kill using the PID from tasklist. No need to open Task Manager at all.

assoc โ€” File Extension Associations

assoc lists every file extension registered on your system and the program type associated with it. assoc .mp4 shows what opens MP4 files; assoc .txt=txtfile reassigns .txt to the default text handler. This is the fastest way to fix broken “open with” associations without digging through Settings.

getmac /v

getmac /v displays the MAC (hardware) address of every network adapter along with its friendly name and connection status. Faster than hunting through Device Manager, and useful when a network switch or DHCP reservation needs the physical address.

cls โ€” Clear the Screen

Type cls and press Enter to wipe the Command Prompt window. Simple, but invaluable when you’ve been running diagnostics for an hour and the terminal is a wall of text.

Administration and Utility Windows CMD Commands

shutdown /r /fw /f /t 0

This single command reboots your PC directly into the UEFI/BIOS firmware interface โ€” no more hammering F2 or Del at boot. Breaking it down: /r restarts, /fw boots into firmware, /f forces running applications to close, /t 0 sets a zero-second delay. Essential for changing boot order or enabling TPM settings required for a Windows 11 upgrade.

clip โ€” Pipe Any Output to the Clipboard

Append | clip to any command and its output lands in your clipboard, ready to paste into Notepad, a support ticket, or an email. Example: ipconfig /all | clip copies your full network configuration without any mouse selection.

Quick-Reference: All 40 CMD Commands by Category

Here is a consolidated list of the Windows CMD commands covered in this guide, organised by function:

  • Network info: ipconfig, ipconfig /all, ipconfig /release, ipconfig /renew, ipconfig /displaydns, ipconfig /flushdns, nslookup, getmac /v

  • Connectivity testing: ping, ping -t, tracert, tracert -d

  • Connection monitoring: netstat, netstat -af, netstat -o, netstat -e -t 5

  • Network management: netsh wlan show wlanreport, netsh interface show interface, netsh interface ip show address, netsh interface ip show dnsservers, netsh advfirewall state off/on, route print, route add, route delete

  • Disk and system repair: chkdsk /f, chkdsk /r, sfc /scannow, DISM /CheckHealth, DISM /ScanHealth, DISM /RestoreHealth

  • Power management: powercfg /energy, powercfg /batteryreport

  • Process management: tasklist, taskkill

  • File and output utilities: assoc, findstr, clip, cls

  • Administration: shutdown /r /fw /f /t 0

For the complete official reference covering every Windows command available, Microsoft maintains the authoritative documentation at Windows Commands โ€” Microsoft Learn.

Getting the most from these command prompt commands starts with having a genuine, activated copy of Windows. A properly licensed OS ensures Windows Update, sfc, and DISM all function correctly โ€” none of these repair tools work reliably on an unactivated system. If you’re not sure whether your licence is valid, check out our guide on how to verify your Windows licence is genuine, or grab a fully licensed copy of Windows 11 Pro at Buy Now Key โ€” from just โ‚ฌ17.90 โ€” so every CMD repair command works exactly as intended.

Frequently Asked Questions

Do these CMD commands work on both Windows 10 and Windows 11?

Yes. Every command listed in this guide runs identically on Windows 10 and Windows 11. The Command Prompt shell (cmd.exe) has remained consistent across both versions. On Windows 11, you can also run these commands inside Windows Terminal, which offers tabs and a modern interface while executing the same underlying instructions.

Do I Need to Run These CMD Commands as Administrator?

Not all of them. Commands like ipconfig, ping, tracert, netstat, tasklist, nslookup, and cls work fine in a standard CMD window. However, chkdsk, sfc /scannow, DISM, netsh advfirewall, and shutdown /r /fw all require elevated (administrator) privileges. Right-click the Start menu and choose Terminal (Admin) or Command Prompt (Admin) before running those.

What is the difference between sfc /scannow and DISM?

System File Checker (sfc) compares individual Windows system files against cached copies stored on your local drive and replaces any that are damaged. DISM operates one level deeper โ€” it repairs the Windows component store (the source sfc pulls from). If sfc reports errors it cannot fix, it usually means the component store itself is corrupt, and DISM /RestoreHealth (which downloads clean files from Microsoft) is the correct next step.

Which Command Prompt Commands Flush the DNS Cache?

Run ipconfig /flushdns in an elevated Command Prompt. Your PC caches DNS lookups to speed up browsing, but stale entries can cause a site to load incorrectly โ€” or not at all โ€” after a domain has been moved to a new server. Flushing the cache forces Windows to request a fresh lookup the next time you visit that domain, resolving the problem instantly in most cases.

Can I undo a route add command in Windows CMD?

Yes. Use route delete <destination> where the destination matches what you added. Static routes added without the -p (persistent) flag are automatically removed on reboot, so a restart is also a reliable way to clear any manually added routes. Use route print first to confirm exactly what is currently in the table.

Illustration of a Windows 11 2026 clean installation showing Microsoft Store app privacy data retained after formatting, with secure local storage, Microsoft cloud synchronization, and account data persistence represented by security, cloud, and storage icons.

Microsoft Store App Privacy: Why History Survives a Clean Install

Microsoft Store app privacy is more complicated than most users realise. Do a full clean install of Windows 10 โ€” boot from USB, format the entire drive โ€” sign back into your Microsoft account, and open the Store. Years of app installations are already listed, waiting for you (or anyone else using that machine). No local data survived the wipe, yet the history is all there. This article explains exactly why it happens, what data Microsoft stores in the cloud, and the concrete steps you can take to prevent it.

Why Your Store App History Survives a Full Format

Cloud storage keeping Microsoft Store app history separate from local device data

Your Microsoft Store app history is not stored on your local drive โ€” it is stored against your Microsoft account in the cloud. When you sign in with a Microsoft account, the Store automatically pulls your full acquisition history from Microsoft’s servers, regardless of what happened to the device underneath it. The operating system version, whether you formatted once or five times, or whether you switched to a brand-new machine entirely โ€” none of that matters. The history lives in your account, not on your SSD.

This is by design. Microsoft treats app purchases and free acquisitions like a library: once an app is tied to your account, you can re-download it on any compatible device at any time. A handy feature for software continuity โ€” a significant privacy concern when you want a genuinely clean start.

What Exactly Is Recorded Under Your Account

The data that persists includes every app you have ever installed or purchased from the Microsoft Store, going back to whenever you first created your account. According to Microsoft’s own support documentation on order history, all purchases and free acquisitions are logged against your account billing record. This covers:

  • Free apps you downloaded (games, utilities, productivity tools)
  • Paid apps and any in-app purchases
  • Apps installed on previous devices you no longer own
  • Apps from accounts tied to old email addresses you’ve since linked
  • Apps installed by other users who signed in on the same machine

Because the Microsoft Store has been integrated into Windows since Windows 8 (launched in 2012), some accounts carry over a decade of installation history โ€” easily hundreds of entries.

The Real-World Privacy Risk of Persistent Store App History

Microsoft Store app privacy dashboard showing stored app history and clear option

Windows app privacy matters most in scenarios people don’t always anticipate. Selling or donating a laptop is an obvious one: even after a clean reinstall, the next user can simply sign in to see what apps were associated with the machine’s previous owner if credentials are ever shared or guessed. More subtly, anyone who shares a Microsoft account โ€” family members, a small business where staff use the same sign-in โ€” can see a full log of what everyone has downloaded.

There is also the profiling angle. Your app installation history forms part of the behavioural data Microsoft holds on your account. The Microsoft Privacy Statement confirms that personal data associated with your account includes device and usage data as well as activity-related information โ€” data that can inform advertising targeting and product recommendations across Microsoft’s ecosystem.

How to Check What Microsoft Store History Is Stored

Before clearing anything, it is worth seeing the full picture. Here is how to review your Microsoft Store history right now:

  1. Open the Microsoft Store and click your profile icon in the top-right corner.
  2. Select Library โ€” this shows all apps ever associated with your account, not just the ones currently installed.
  3. For a broader view, visit account.microsoft.com/billing and navigate to Order history. This lists every Store transaction, including free acquisitions.
  4. For the full data picture, go to account.microsoft.com/privacy (Microsoft’s Privacy Dashboard) and review your app and service activity data.

Most users are surprised by the volume. Hundreds of app entries accumulated over years are common for anyone who has used Windows 10 or Windows 11 since launch.

Step-by-Step: How to Reduce Your Windows App Privacy Footprint

Windows app privacy settings screen disabling activity history sync in Windows 11

A clean install alone will not solve a Microsoft Store history problem. These are the steps that actually work.

1. Clear Data via the Microsoft Privacy Dashboard

Head to account.microsoft.com/privacy and sign in. Microsoft’s Privacy Dashboard lets you view and delete various categories of stored activity data. Look for app and service activity, and use the clear function to remove entries. Note that purchase records for paid apps cannot be deleted (they are required for licence verification), but activity data for free acquisitions can be reduced.

2. Sign in with a Local Account Instead of a Microsoft Account

This is the single most effective change you can make for Windows app privacy. When you use a local account, the Microsoft Store cannot link your app activity to a persistent cloud profile. To switch:

  • Go to Settings โ†’ Accounts โ†’ Your info and select Sign in with a local account instead.
  • Complete the wizard and restart.
  • You can still use the Store by signing in just for that session, without permanently tying history to a cloud account.

The trade-off is losing features like cross-device sync and OneDrive integration, so consider whether those are features you use.

3. Create a Fresh Microsoft Account for Clean Installs

If you want cloud features but not decades of history, creating a new Microsoft account on a new device or after a reinstall gives you a genuinely clean slate in the Store. Free โ€” just a new email address. Useful when selling or donating a machine.

4. Disable Activity History in Windows Settings

In Windows 10 and Windows 11, navigate to Settings โ†’ Privacy โ†’ Activity history and toggle off Store my activity history on this device and Send my activity history to Microsoft. This does not delete past history but stops new activity from being recorded going forward.

5. Review App Permissions Before and After a Reinstall

Each time you do a fresh install, visit Settings โ†’ Privacy and audit which apps have access to your location, microphone, camera, and contacts. A reinstall resets some permission states, but linked cloud data means the apps themselves still know your history once you sign in.

Does This Affect Windows 11 as Well?

Yes โ€” and arguably more so. Windows 11 pushes users more aggressively towards Microsoft accounts during setup, making it harder to opt for a local account during the out-of-box experience. The Microsoft Store is also more deeply integrated into Windows 11, meaning Microsoft Store history is more likely to be pulled automatically at sign-in. The same privacy steps above apply, but local account setup on Windows 11 requires an extra step: on the network screen during install, press Shift + F10 to open a command prompt and type OOBE\BYPASSNRO to enable the “I don’t have internet” option, which allows local account creation.

If you are considering upgrading or doing a fresh install of Windows 11, Buy Now Key stocks genuine Windows 11 Pro Retail licences โ€” a clean, properly activated copy is the right foundation for managing your privacy settings from the start.

Should Microsoft Change How Store App History Works?

The Reddit thread that brought this issue to wider attention in 2025 sparked a clear consensus: users expect a full drive format to mean a fresh start. The fact that cloud-synced Store app history contradicts that expectation is a transparency problem, not just a technical quirk. Many commenters noted they had no idea the history was being stored at all, let alone that it would reappear automatically after a reinstall.

Microsoft does provide tools to manage this data โ€” the Privacy Dashboard exists precisely for this purpose โ€” but they are not surfaced during setup or during the clean-install process. A prompt at first sign-in saying “Your previous app history is available โ€” would you like to restore it or start fresh?” would be a straightforward improvement. Until that happens, users have to take matters into their own hands using the steps above.

Windows 10 Users: Your Licence and Your Privacy

If you are running Windows 10 and have been putting off getting a legitimate licence before the end-of-support deadline, now is a sensible time to sort both your activation and your privacy settings. Buy Now Key offers Windows 10 Pro OEM licences from โ‚ฌ8.90 โ€” a straightforward way to get a properly activated system on which you can immediately apply the privacy controls described in this guide.

Frequently Asked Questions

Does formatting my hard drive delete my Microsoft Store app history?

No. Formatting your drive and reinstalling Windows removes all local data, but your Microsoft Store app history is stored against your Microsoft account in the cloud. The moment you sign back in with that account, the history reappears automatically. To remove it, you need to use Microsoft’s Privacy Dashboard at account.microsoft.com/privacy.

Can I use the Microsoft Store without a Microsoft account?

You can browse the Store without an account, but downloading most apps requires signing in. Using a local Windows account and signing into the Store only when needed โ€” rather than keeping a permanent sign-in โ€” is the best middle ground for reducing persistent history tracking.

How do I delete my Microsoft Store purchase history?

Free app acquisitions and activity data can be cleared via the Microsoft Privacy Dashboard (account.microsoft.com/privacy). Paid purchase records cannot be deleted, as Microsoft retains them for licence and billing purposes. You can review what is stored under the “App and service activity” section of the dashboard.

Does Windows 11 have the same Microsoft Store history problem?

Yes. Windows 11 is even more tightly integrated with Microsoft accounts than Windows 10, meaning Store app history syncs automatically at sign-in. The same steps apply: use a local account where possible, or regularly clear activity data via the Privacy Dashboard. Windows 11 also makes local account setup harder during installation, requiring an extra workaround during the out-of-box experience.

Will switching to a local account delete my existing Microsoft Store history?

No โ€” switching to a local account on your device does not delete data already stored in the cloud against your Microsoft account. It simply prevents new activity from being automatically linked and displayed going forward. To delete the stored history itself, you need to log into account.microsoft.com/privacy and clear it there.

Windows 10 hardware compatibility check showing compatible and blocked PC systems

Windows 10 Hardware Compatibility: Why 30% of PCs Still Can’t Upgrade

Windows 10 hardware compatibility is the reason roughly 30% of the world’s PCs are still locked out of Windows 11 โ€” and HP’s frank admission has finally put a number on a problem millions of users already know firsthand. CPU generation walls, mandatory TPM 2.0 chips, and minimum RAM thresholds combine to create one of the strictest OS upgrade barriers Microsoft has ever erected. If your machine is on the wrong side of that wall, this guide explains exactly why, and what your realistic options are before the extended Windows 10 support window closes in October 2027.

What HP’s Data Actually Tells Us About Hardware Compatibility

Three hardware compatibility barriers blocking Windows 11 upgrade on older PCs

HP โ€” one of the world’s largest PC manufacturers โ€” publicly acknowledged that around 30% of its active Windows install base is still running Windows 10, not by choice but because those machines fail Microsoft’s minimum hardware requirements for Windows 11. That is an enormous proportion when you consider HP alone ships tens of millions of units annually. Scale that across the entire global market and you are looking at hundreds of millions of PCs that are, by Microsoft’s own definition, incompatible with its current flagship OS.

This is not a software problem or a reluctance to upgrade. It is a fundamental PC upgrade compatibility ceiling imposed by hardware that was perfectly capable and even premium-grade just a few years ago. An Intel Core i7 from the 7th generation, for example, ran demanding workloads without complaint in 2018 โ€” yet it fails Microsoft’s approved CPU list for Windows 11 entirely.

The Three Hardware Walls Blocking Your Windows Upgrade

Understanding exactly which requirements create the bottleneck helps you diagnose your own machine quickly. There are three primary blockers, and most incompatible PCs fail on at least two of them simultaneously.

1. CPU Generation: The Biggest Barrier to Windows Upgrade Requirements

Microsoft’s official Windows 11 specifications restrict compatibility to Intel 8th-generation Core processors (Coffee Lake, 2017) and newer, or AMD Ryzen 2000 series and newer. Any CPU older than those cut-off generations is simply not on the approved list โ€” regardless of its clock speed, core count, or actual performance capability. This single rule disqualifies an enormous wave of 2015โ€“2017 hardware that is otherwise fully functional.

The stated reasoning involves silicon-level security features and instruction sets that older CPUs lack โ€” including hardware-enforced stack protection and certain virtualisation capabilities that Windows 11’s security model depends on.

2. TPM 2.0: The Chip Most Users Didn’t Know They Needed

Trusted Platform Module (TPM) 2.0 is a dedicated security chip โ€” either a discrete component soldered to the motherboard or a firmware-based implementation baked into the CPU. Microsoft made TPM 2.0 a non-negotiable requirement for Windows 11, citing its role in BitLocker encryption, Windows Hello, and Secure Boot authentication.

Many business-class machines manufactured before 2018 either have no TPM chip at all, have TPM 1.2 (which does not satisfy the requirement), or have TPM 2.0 disabled in the BIOS by default. The third scenario is actually fixable โ€” enabling TPM 2.0 in UEFI firmware settings costs nothing and takes under five minutes โ€” but the first two scenarios represent genuine hardware compatibility dead-ends without a motherboard replacement.

3. RAM: The 4 GB Floor

Windows 11 requires a minimum of 4 GB of RAM. This sounds modest by modern standards, but millions of older budget laptops and corporate thin-client machines shipped with just 2 GB or 3 GB. While RAM is often upgradeable, many of these machines also use soldered memory modules that cannot be expanded โ€” so even willing users have no path forward without buying new hardware.

Why Microsoft Extended Windows 10 Support to October 2027

Windows 10 hardware compatibility check result showing PC upgrade requirements failed

Originally, Microsoft set October 14, 2025 as the end-of-life date for Windows 10. When it became clear that hundreds of millions of devices simply could not meet Windows 11’s hardware requirements, the company quietly extended its free Extended Security Update (ESU) programme by a full year, then extended it again to October 12, 2027 โ€” giving users an additional two years of critical security patches beyond the original deadline.

This extension is a direct acknowledgement of the scale of the Windows 10 hardware compatibility crisis. Microsoft could not realistically force a third of the world’s PC fleet onto unsupported hardware overnight. The ESU programme means Windows 10 Home and Pro users continue to receive security patches through October 2027 at no extra cost โ€” though it is important to understand that this is a security-update lifeline, not a feature-development extension. No new features are coming to Windows 10.

How to Check Your PC’s Upgrade Compatibility Right Now

Microsoft’s own PC Health Check app is the fastest way to determine whether your machine meets Windows upgrade requirements. Download it directly from Microsoft’s website, run it, and it will return a pass/fail result along with the specific reason for failure โ€” whether that is CPU, TPM, RAM, storage, or Secure Boot. The process takes under two minutes.

Alternatively, you can check manually:

  • CPU: Open Task Manager โ†’ Performance โ†’ CPU. Note the model name, then cross-reference it with Microsoft’s approved processor list.
  • TPM status: Press Win + R, type tpm.msc, and press Enter. If TPM 2.0 is present and active, you will see the version number.
  • RAM: Task Manager โ†’ Performance โ†’ Memory. 4 GB minimum is required.
  • Storage: You need at least 64 GB of free drive space.
  • Firmware: Confirm UEFI mode (not legacy BIOS) and that Secure Boot is enabled in your firmware settings.

Your Options If Your PC Fails Windows 11 Hardware Compatibility

PC upgrade compatibility decision paths from Windows 10 to Windows 11 for users

Failing the compatibility check does not mean you have to rush out and buy a new machine tomorrow. There are several practical paths, each with different cost and risk profiles.

Option 1: Stay on Windows 10 and Buy an Affordable Licence

If your hardware is otherwise performing well, staying on Windows 10 through October 2027 is a perfectly rational decision. The ESU extension means you will keep receiving security patches for over two more years. The key is ensuring you are running a fully activated, genuine copy so you receive all updates reliably. A legitimate Windows 10 licence from Buy Now Key starts from as little as โ‚ฌ8.90 โ€” far cheaper than rushing into new hardware before you need to.

Option 2: Fix What Is Fixable (TPM and Secure Boot)

If TPM 2.0 and Secure Boot are the only obstacles โ€” and your CPU is on the approved list โ€” you may simply need to enable them in your UEFI/BIOS settings. Restart your PC, enter BIOS (usually Del, F2, or F10 at boot), locate the Security or TPM section, and enable both features. Then re-run the PC Health Check. Many users discover this is their only blocker.

Option 3: Upgrade to Windows 11 on a Compatible Device

If your machine genuinely cannot be made compatible and you need Windows 11’s features, the cleanest path is a new or refurbished device with a fresh licence. At Buy Now Key, Microsoft Windows 11 Pro Retail is available from โ‚ฌ17.90 โ€” meaning the software cost of stepping up is genuinely low. The bigger investment is hardware, but in many cases a modest refurbished business PC will easily meet Windows 11’s requirements and cost far less than a brand-new machine.

Option 4: The Unofficial Bypass Route (With Caveats)

Various registry edits and third-party tools exist to install Windows 11 on unsupported CPUs. Microsoft has explicitly warned that devices running Windows 11 outside the official PC upgrade compatibility list may not receive future updates and could encounter stability issues. In December 2024, Microsoft confirmed it would not relax hardware requirements. Proceed with this route only if you fully understand and accept the risks โ€” it is not a path Buy Now Key recommends for production or business machines.

What This Means for Businesses Managing Large PC Fleets

For IT administrators, the HP data point is a sobering reality check. If 30% of consumer PCs fail Windows upgrade requirements, enterprise fleets โ€” which tend to run hardware on longer refresh cycles โ€” could see even higher incompatibility rates. Microsoft’s own guidance recommends using tools like Microsoft Intune or Endpoint Configuration Manager to audit TPM 2.0 compatibility across your estate before planning a bulk migration.

The October 2027 deadline, while welcome, is not a permanent stay of execution. Businesses that have not begun phased hardware refresh planning risk facing a last-minute crunch with supply constraints, budget pressures, and a hard deadline for security patch coverage all converging at once. Starting that conversation now โ€” even if rollout is 18โ€“24 months away โ€” is strongly advisable.

Will Microsoft Ever Relax Its Hardware Compatibility Rules?

The short answer is almost certainly not. Microsoft confirmed in December 2024 that it has no plans to lower or remove the CPU, TPM 2.0, or RAM requirements. The official reasoning centres on the security architecture underpinning Windows 11 โ€” features like hardware-enforced stack protection, Pluton security processors, and future Secured-Core PC capabilities all depend on these hardware minimums being present. Relaxing them would, in Microsoft’s view, undermine the entire security proposition of Windows 11.

The more pragmatic reading is that Microsoft also has commercial incentives for a hardware refresh cycle. Regardless of motive, the requirements are not changing โ€” which makes understanding your own machine’s hardware compatibility position more important than ever.

FAQ

Which CPUs are incompatible with Windows 11?

Any Intel CPU older than 8th-generation Core (2017 Coffee Lake) and any AMD CPU older than Ryzen 2000 series (2018) is officially unsupported. This includes the very popular Intel 6th and 7th generation Core processors that powered millions of business laptops and desktops sold between 2015 and 2017. Microsoft publishes a full approved CPU list on its Windows 11 specifications page.

Is TPM 2.0 always a hardware problem, or can it be enabled in software?

Often it is a BIOS setting, not a missing chip. Many machines manufactured after 2016 include TPM 2.0 in firmware (called fTPM on AMD systems or PTT on Intel), but it is disabled by default. Entering your UEFI settings and enabling it costs nothing. If the chip is truly absent or only TPM 1.2 is present, however, you would need a discrete TPM module or a motherboard that supports firmware TPM โ€” which means a hardware upgrade or replacement.

How long will Windows 10 receive security updates?

Microsoft extended free consumer Extended Security Updates (ESUs) to October 12, 2027. This covers critical security patches for Windows 10 Home and Pro. After that date, no further security updates will be issued for Windows 10, and continuing to use it represents a genuine security risk. Feature updates stopped with Windows 10 version 22H2 in 2022.

Can I upgrade my RAM or add a TPM chip to make my PC compatible?

It depends on your hardware. If your RAM is in standard DIMM or SO-DIMM slots (not soldered), upgrading to 4 GB or more is straightforward and inexpensive. Discrete TPM 2.0 modules exist and can be fitted to motherboards with a TPM header, but compatibility varies by board. The bigger problem is usually the CPU generation requirement โ€” there is no upgrade path for that short of replacing the CPU and often the motherboard too, at which point a new system may be more cost-effective.

Is the free Windows 11 upgrade still available?

Yes โ€” if your PC meets the hardware requirements, the upgrade from Windows 10 to Windows 11 remains free through Windows Update. Simply ensure your Windows 10 copy is activated and up to date, then check Settings โ†’ Windows Update โ†’ Check for Updates. Eligible machines will be offered the upgrade at no charge. If your machine is not on the compatible list, the free upgrade will not appear regardless of your Windows 10 activation status.

What is the cheapest way to get a genuine Windows licence?

Buy Now Key offers both Windows 10 licences from โ‚ฌ8.90 and Windows 11 Pro from โ‚ฌ17.90. These are genuine, permanently activated licences with instant digital delivery โ€” far cheaper than buying through a retail box or directly from Microsoft’s storefront. If you are staying on Windows 10 through 2027, securing a proper licence now ensures uninterrupted update delivery.

OneDrive Support Ends for Windows 10 warning notification on a PC desktop

OneDrive Support Ends for Windows 10: What to Do Before August 2026

OneDrive support ends on 15 August 2026 for every Windows 10 build earlier than 22H2 โ€” Microsoft has confirmed the OneDrive desktop sync app will stop receiving updates on those devices. If your PC is on version 21H2 or older, your files will not stop syncing overnight, but you will be left without security patches, bug fixes, or new features โ€” a risk no one should ignore. Here is everything you need to know to check your build, understand what changes, and plan your next move.

Which Windows 10 Builds Lose OneDrive Sync Support?

Windows 10 builds losing OneDrive sync support highlighted in a comparison chart

Microsoft’s decision targets all Windows 10 versions prior to 22H2. Specifically, Windows 10 OneDrive sync updates will cease for:

  • Windows 10 21H2 (Build 19044) and all earlier releases

  • Windows 10 21H1 (Build 19043)

  • Windows 10 20H2 (Build 19042)

  • Windows 10 2004 (Build 19041) and older

Windows 10 version 22H2 โ€” the final and most recent release of Windows 10 โ€” is the only build that retains OneDrive sync app support, and Microsoft has committed to continuing updates for it until October 2028, aligned with its extended support lifecycle. If you are on 22H2, you have breathing room. If you are not, the clock is ticking.

How to Check Whether OneDrive Support Ends on Your PC

Verifying your build takes under a minute. Press Windows key + R, type winver, and press Enter. A window appears showing your Windows edition and exact version number. You can also go to Settings > System > About and look for the “OS build” entry under Windows specifications. If the version shown is anything below 22H2 (19045), your device falls inside the affected range for OneDrive support ending.

What Happens When OneDrive Support Ends on 15 August 2026?

Three migration options for Windows 10 users before OneDrive support ends

Microsoft’s cut-off is about updates, not immediate disconnection. Once OneDrive support ending takes effect for your build, the sync app will likely continue to function in a basic capacity for a period โ€” but you will receive no further security patches, compatibility fixes, or performance improvements. Over time, this creates real risks:

  • Unpatched security vulnerabilities in the sync client itself

  • Potential incompatibility with future OneDrive cloud-side changes

  • No access to new features such as improved conflict resolution or Personal Vault updates

  • Eventual sync failures as Microsoft’s servers evolve beyond what the outdated client supports

In short, staying on a legacy build after the deadline is a ticking time bomb for data reliability and security. Treating this as a soft warning rather than a firm deadline is a mistake.

Your Migration Options Before the Deadline

You have three realistic paths forward, and the right one depends on your hardware and workflow.

Option 1: Update to Windows 10 22H2

If your device is already running Windows 10 and you do not want to change operating systems yet, simply updating to version 22H2 keeps OneDrive sync support intact until October 2028. Go to Settings > Update & Security > Windows Update and check for updates. On most supported Windows 10 devices, 22H2 is available as a free update. This is the fastest fix if your hardware does not meet Windows 11 requirements.

Option 2: Upgrade to Windows 11

Upgrading to Windows 11 is the longer-term solution Microsoft clearly prefers, and it fully resolves the OneDrive sync support question. Windows 11 ships with a deeply integrated, regularly updated OneDrive experience and continues to receive full support well into the next decade. If your hardware supports it โ€” you will need a compatible 64-bit processor, 4 GB RAM, 64 GB storage, and TPM 2.0 โ€” this is the cleanest path. At Buy Now Key, a genuine Microsoft Windows 11 Pro licence starts from just โ‚ฌ17.90, making the upgrade accessible without breaking the bank. For home users, Microsoft Windows 11 Home is available from โ‚ฌ15.60 โ€” a permanent, one-time licence key with lifetime activation.

Option 3: Supplement with Alternative Cloud Storage

If neither update is immediately possible, consider temporarily supplementing your setup with an alternative sync tool โ€” Google Drive, Dropbox, or similar โ€” while you plan the migration properly. This is not a long-term solution, but it reduces the risk of losing access to cloud-synced data if OneDrive becomes unreliable on your legacy build. Back up your OneDrive folder locally before the deadline regardless of which path you choose.

Why Microsoft Is Ending OneDrive Sync Support

OneDrive support timeline for Windows 10 22H2 ending in October 2028

This move fits neatly into Microsoft’s broader platform consolidation strategy. Windows 10 itself reached end of support on 14 October 2025, meaning the operating system as a whole no longer receives security updates unless organisations pay for Extended Security Updates (ESU). Continuing to develop and test the OneDrive sync app across a fragmented landscape of pre-22H2 builds adds engineering overhead for diminishing returns โ€” the vast majority of active Windows 10 users have already updated to 22H2, which became freely available years ago. Cutting support for older builds lets Microsoft focus engineering resources on Windows 11 and the cloud platform that drives its future revenue.

As reported by The Register, OneDrive sync app updates will continue on Windows 10 22H2 until October 2028, providing a clear and structured wind-down rather than an abrupt cut-off for all Windows 10 users at once.

Are Your Files Safe After OneDrive Support Ends?

Your files stored in the cloud on OneDrive.com are entirely unaffected by this change. The cut-off applies only to the desktop sync app โ€” the software that keeps a local folder on your PC in sync with your cloud storage. Even if the sync app stops working correctly on your device, you can always access your files through a web browser at OneDrive.com. That said, relying on browser-only access long term is inconvenient and risky if you depend on offline access. Do not assume your files are “fine” just because the cloud copy is intact โ€” plan the migration now while you have time.

How to Prepare a Clean Migration Plan

Follow these steps before 15 August 2026 to ensure a smooth transition:

  1. Check your build (winver or Settings > About) and confirm whether you are on 22H2 or earlier.

  2. Back up your OneDrive folder to an external drive or secondary storage location.

  3. Attempt a Windows 10 22H2 update via Windows Update if you want to stay on Windows 10.

  4. Check Windows 11 compatibility using Microsoft’s PC Health Check tool if an OS upgrade is viable.

  5. Purchase a Windows 11 licence if your PC is compatible and you are ready to upgrade โ€” our Windows licence category covers both Windows 10 and Windows 11 options at competitive prices.

  6. Reinstall and relink OneDrive after the upgrade to ensure a fresh, fully supported sync setup.

Frequently Asked Questions About OneDrive Support Ending

Does OneDrive support end for all Windows 10 users?

No. Only users on Windows 10 versions earlier than 22H2 are affected. Windows 10 22H2 retains full OneDrive sync support until October 2028. If you are already on 22H2 (build 19045), you do not need to take any action specifically related to this announcement.

Will my existing OneDrive files be deleted after the deadline?

No. Files stored in your OneDrive cloud account are not affected. The change only applies to the desktop sync application on older builds. You can still access all your files through a web browser even if the sync app stops receiving updates โ€” though for reliable day-to-day use, upgrading your OS remains the recommended course of action.

Can I keep using the OneDrive app on Windows 10 21H2 after 15 August 2026?

You may be able to use it for a period, but Microsoft will no longer patch it. Security vulnerabilities, compatibility issues, and eventual sync failures become increasingly likely the longer you stay on an unsupported build. Relying on an unpatched sync client for important data carries significant risk.

How much does it cost to upgrade to Windows 11?

At Buy Now Key, a genuine Windows 11 Pro licence is available from โ‚ฌ17.90 and Windows 11 Home from โ‚ฌ15.60 โ€” both are permanent, lifetime keys with instant digital delivery. This is a one-time cost with no ongoing subscription.

What if my PC cannot run Windows 11?

If your hardware does not meet Windows 11’s minimum requirements, updating to Windows 10 22H2 is the safest short-term option, preserving OneDrive sync support until October 2028. Beyond that date, you will need either new hardware capable of running Windows 11 or to migrate your workflow to a browser-based OneDrive setup.

Critical Windows zero-day exploit cracking system security shield illustration

Windows Zero-Day Exploit: How LegacyHive Gives Hackers Admin Access

A new Windows zero-day exploit called LegacyHive has sent shockwaves through the security community โ€” and it works on fully patched Windows systems right now, without any user interaction. Disclosed by a researcher known as Nightmare Eclipse, LegacyHive abuses the Windows User Profile Service to silently hand attackers SYSTEM-level privileges from a standard user account. If you use Windows 10 or Windows 11, this affects you.

What Is the LegacyHive Windows Zero-Day Exploit?

Diagram showing Windows zero-day exploit targeting User Profile Service registry hive

LegacyHive is a proof-of-concept (PoC) exploit targeting a Windows privilege escalation flaw in the User Profile Service (ProfSvc). When the exploit runs, it manipulates user profile registry hive data to load a second user’s registry hive under the attacker’s controlled context, enabling full admin-level code execution. No victim clicks, no prompts, no warnings โ€” an attacker already holding a low-privileged account on your machine can become Administrator in seconds.

The vulnerability was publicly released in July 2026, timed provocatively to coincide with Microsoft’s Patch Tuesday cycle โ€” meaning it dropped into the wild with no official patch available at the time of disclosure. Security researchers at SOC Prime described LegacyHive as “an unpatched local privilege escalation vulnerability in the Windows User Profile Service that allows an attacker to load another user’s registry hive.”

Which Windows Systems Are Affected by This Zero-Day Vulnerability?

This zero-day vulnerability is broad in scope. According to published analysis from Security Affairs and Cybersecurity News, LegacyHive affects:

  • Windows 10 (all currently supported versions)
  • Windows 11 (including the latest 24H2 release)
  • Windows Server editions (desktop and server variants)
  • Fully patched systems โ€” applying all July 2026 Patch Tuesday updates does not close this gap

The “fully patched” detail is critical. Many users assume that keeping Windows Update current eliminates risk. With a zero-day, by definition, no vendor patch exists yet โ€” which means every Windows machine in that state is potentially vulnerable until Microsoft issues a fix.

How Does the LegacyHive Windows Security Flaw Actually Work?

Windows privilege escalation attack chain showing zero-day exploit steps

Understanding the mechanism helps you appreciate the risk. The Windows User Profile Service is responsible for loading user profiles when someone logs on. LegacyHive abuses an oplock (opportunistic lock) trigger โ€” a Windows file-system feature โ€” to intercept this loading process at exactly the right moment.

Here is the attack chain in plain terms:

  1. The attacker already has a standard (non-admin) user account on the target machine โ€” gained via phishing, credential theft, or any other initial compromise.
  2. The exploit triggers an oplock on a specific registry hive file during the profile-loading phase.
  3. At that window of opportunity, the attacker substitutes their own controlled hive data for a higher-privileged user.
  4. The User Profile Service loads the manipulated hive with elevated trust, giving the attacker SYSTEM-level permissions.
  5. The attacker can now execute arbitrary code, install malware, disable security software, or create persistent backdoors โ€” all silently.

What makes this particularly dangerous is that the attack requires no user interaction. The victim does not need to open a file, click a link, or approve anything. As long as the attacker has a foothold on the machine, LegacyHive does the rest.

Windows Privilege Escalation Risks: Why This Is Especially Serious

Privilege escalation flaws are rarely “standalone” threats. They almost always serve as the second stage of a broader attack. A threat actor who compromises a low-level account through phishing or a weak password now has a reliable ladder to full administrative control โ€” enabling ransomware deployment, data exfiltration, lateral movement across a corporate network, or complete system takeover.

For home users, admin access means an attacker can install keyloggers, disable Windows Defender, access saved browser passwords, or hold files hostage. For businesses, the impact scales dramatically: a single compromised workstation can become the launchpad for a network-wide breach.

It is also worth noting that LegacyHive arrived just hours after Patch Tuesday โ€” a deliberate choice by the researcher. This timing means the next patch cycle is still weeks away, leaving a maximum exposure window for all Windows users.

How to Protect Yourself Against the Windows Zero-Day Exploit

Windows security flaw protection checklist with shield and lock icons

There is no official Microsoft patch for LegacyHive at the time of writing. However, you can significantly reduce your risk with the following steps โ€” none of which require technical expertise.

1. Limit Standard User Account Exposure

LegacyHive requires the attacker to already have a foothold โ€” a standard user account โ€” on the machine. Minimising how attackers can gain that initial access is therefore your first line of defence. Use strong, unique passwords, enable multi-factor authentication wherever possible, and avoid logging in with an Administrator account for day-to-day tasks.

2. Keep Windows Updated โ€” Even Now

While no patch for LegacyHive exists yet, staying current with all Windows security flaw patches ensures you are not exposed to the dozens of other vulnerabilities Microsoft does fix each month. The May 2026 Patch Tuesday update alone addressed 120 vulnerabilities. Do not let patch fatigue leave older, known flaws open alongside new ones.

3. Enable and Monitor Windows Defender

Microsoft’s built-in threat detection can identify suspicious process behaviour consistent with privilege escalation. Ensure real-time protection is on and definitions are up to date. Third-party endpoint detection and response (EDR) tools can offer more granular behavioural monitoring for business environments.

4. Restrict Local User Account Privileges

Review who has local accounts on any shared or business Windows machine. Remove unnecessary accounts. Apply the principle of least privilege โ€” users should only have the permissions their role requires, nothing more.

5. Watch for Microsoft’s Out-of-Band Patch

Given the severity of LegacyHive, Microsoft may release an emergency out-of-band patch before the next scheduled Patch Tuesday. Monitor the Microsoft Security Response Center (MSRC) update guide for any new advisories. When a fix arrives, apply it immediately โ€” do not wait.

6. Be Sceptical of Phishing and Social Engineering

Because LegacyHive needs initial account access to work, stopping the first step of an attack stops everything. Be cautious of unexpected emails, suspicious links, or requests for your credentials โ€” even from apparently familiar senders.

Is Your Windows Version Running at Full Security Potential?

This Windows zero-day exploit is a sharp reminder that not all Windows editions are equal when it comes to built-in security tooling. Windows 11 Pro, for instance, includes BitLocker drive encryption, Windows Hello for Business, Hyper-V virtualisation-based security, and enhanced credential guard โ€” all of which raise the bar for attackers even if a privilege escalation flaw exists. Windows 10 Home and Windows 11 Home users lack some of these enterprise-grade protections.

If you are still running Windows 10, it is also worth knowing that free security updates are currently extended to October 2027 โ€” but that end date will arrive. Planning an upgrade to Windows 11 now, rather than scrambling later, keeps you on a more secure, actively developed platform. You can browse our range of Windows 11 Pro licence keys starting from โ‚ฌ17.90 for a retail key โ€” a straightforward way to ensure your machine is on the most protected version of Windows available.

This is not the only high-profile Windows vulnerability in recent memory. LegacyHive follows a pattern of serious flaws including a BitLocker bypass exploit that targeted encrypted drives. Our earlier deep-dive on the BitLocker bypass exploit affecting Windows 11 covers what that separate flaw means and how to respond โ€” worth reading alongside this article for a fuller security picture.

What Is Microsoft Doing About the LegacyHive Zero-Day Vulnerability?

Microsoft has confirmed it is investigating the LegacyHive disclosure. At the time of writing, no CVE identifier has been officially assigned, and no patch date has been announced. The researcher, Nightmare Eclipse, has a history of dropping Windows PoC exploits at high-profile moments โ€” including in the wake of previous Patch Tuesday releases โ€” which places additional pressure on Microsoft to respond quickly.

Security analysts note that while the PoC as publicly released requires some additional steps to work reliably in all environments, a motivated threat actor could refine it into a fully weaponised tool. The window between PoC release and active exploitation in the wild has historically been very short โ€” in some cases just days. Treat this as a live threat, not a theoretical one.

Frequently Asked Questions

Does LegacyHive affect fully patched Windows 11 machines?

Yes. LegacyHive is an unpatched zero-day, meaning no official fix exists yet. Applying all available Windows updates reduces your exposure to other flaws, but does not close the LegacyHive vulnerability. Only a dedicated patch from Microsoft will address it directly.

Does the attacker need physical access to exploit this Windows security flaw?

No. LegacyHive is a local privilege escalation exploit, meaning the attacker needs a low-privileged user account on the machine โ€” but that account can be obtained remotely through phishing, malware, or credential theft. Physical access is not required.

What is the difference between a zero-day exploit and a patched vulnerability?

A zero-day exploit targets a flaw for which the software vendor has not yet issued a fix. The term “zero-day” refers to the fact that defenders have had zero days to patch it. A patched vulnerability, by contrast, has a fix available โ€” users simply need to apply the update. Zero-days are inherently more dangerous because there is no immediate remediation from the vendor.

Should I upgrade from Windows 10 to Windows 11 because of this?

LegacyHive affects both Windows 10 and Windows 11, so upgrading alone will not protect you from this specific flaw. However, Windows 11 Pro offers additional built-in security features โ€” such as virtualisation-based security and enhanced credential guard โ€” that make privilege escalation attacks harder to execute and easier to detect. An upgrade is a good long-term security move, especially with Windows 10 support ending in October 2027.

How will I know when Microsoft releases a patch for LegacyHive?

Monitor the Microsoft Security Response Center (MSRC) at msrc.microsoft.com for new security advisories. You can also enable automatic Windows updates so that any out-of-band emergency patch is applied as soon as it becomes available. Security news outlets like BleepingComputer will also cover the release as soon as it drops.

Windows Defender disk space vulnerability critical security alert warning concept

Windows Defender Disk Space Vulnerability: What the July 2026 Patch Fixes

The Windows Defender disk space vulnerability patched in July 2026 is one of the most disruptive security flaws to hit Windows in recent memory โ€” and it affects virtually every Windows 10 and Windows 11 machine running Microsoft’s built-in antivirus. Tracked as CVE-2026-33825, the bug allowed remote attackers to abuse Defender’s own scanning engine to flood a target’s hard drive with junk data until the disk was completely full, effectively making the system unusable. Here is exactly what you need to know, what the patch fixes, and how to confirm your PC is protected.

What Is the Windows Defender Disk Space Vulnerability?

Windows Defender disk space vulnerability diagram showing engine writing excessive data

CVE-2026-33825 is a privilege escalation and denial-of-service flaw rooted in insufficient granularity of access control within the Microsoft Malware Protection Engine โ€” the core scanning component that powers Windows Defender. Researchers at multiple threat intelligence firms, including those who follow the threat actor cluster dubbed BlueHammer, confirmed that the flaw was being actively exploited in the wild before Microsoft’s patch landed.

The attack chain works like this: a remote attacker tricks Defender’s real-time protection engine into logging an extremely large volume of diagnostic or quarantine data. Because the engine runs with elevated system privileges, it can write this data without the normal disk-space guardrails that apply to regular user processes. Left unchecked, the process fills every available byte on the system drive โ€” bringing the PC to a standstill. No disk space means Windows cannot write page files, update system logs, or even save documents, effectively locking the user out.

  • Vulnerability ID: CVE-2026-33825
  • Component affected: Microsoft Malware Protection Engine
  • Attack type: Remote-triggered privilege escalation + disk exhaustion
  • Platforms at risk: Windows 10 (all supported builds) and Windows 11
  • Severity: Critical โ€” CVSS score published on the NVD reflects elevated risk due to active exploitation
  • Patch released: July 2026 (out-of-band security update)

Why the Defender Disk Flaw Is Particularly Dangerous

Most security vulnerabilities require an attacker to already have local access to the machine, but this Defender disk vulnerability could be triggered remotely โ€” making it far more threatening for home users and businesses alike. The fact that the exploit weaponises a security tool itself against the system it is meant to protect is a recurring and particularly nasty attack pattern.

What made this Defender disk space bug especially problematic is that Defender’s real-time protection is on by default on every Windows installation that doesn’t have a third-party antivirus active. That means the attack surface was enormous. According to StatCounter, Windows holds roughly 72% of global desktop OS market share as of mid-2026, and the vast majority of those machines run Defender as their primary security layer. Even users who believed they were safe because they kept Windows updated were exposed until Microsoft pushed the fix.

There is also the stealth factor. A disk-fill attack triggered via Defender generates no obvious malware alert โ€” because Defender itself is doing the writing. By the time a user notices the system grinding to a halt, the drive may already be at 100% capacity.

Who Was at Risk from the Windows Defender Flaw?

Any device running a version of the Microsoft Malware Protection Engine prior to 1.1.26060.x (the patched engine version released in July 2026) was potentially at risk. In practical terms, that meant:

  • All Windows 10 users on supported builds (22H2 and later) with Defender enabled
  • All Windows 11 users โ€” including those on 23H2 and 24H2 โ€” who had not yet received the out-of-band engine update
  • Enterprise environments using Microsoft Endpoint Protection or Microsoft Security Essentials, which share the same engine
  • Systems where Defender was in passive mode alongside a third-party AV, since the Protection Engine still receives definition updates and remained partially active

Users running fully third-party antivirus solutions with Defender completely disabled were largely shielded, but this represented a small fraction of the Windows user base.

What the Patch Actually Fixes

Windows Defender flaw patch verification screen showing updated engine version

Microsoft’s July 2026 out-of-band update addresses the Windows Defender disk space vulnerability by implementing stricter access controls around how the Malware Protection Engine writes diagnostic, quarantine, and log data. Specifically, the patch:

  1. Adds disk-write quotas to Defender’s engine processes, capping the total data any single scan or quarantine event can write to disk in a defined timeframe.
  2. Restricts the privilege level under which certain logging operations run, preventing the engine from bypassing standard OS disk-space guardrails.
  3. Improves input validation on scan triggers, so a crafted remote payload can no longer cause the engine to enter an unbounded write loop.

Alongside CVE-2026-33825, the same update also addressed a related privilege escalation bug tracked as CVE-2026-41091, which affected Microsoft Malware Protection Engine version 1.1.26030.3008 and allowed attackers to gain administrative control even when real-time protection appeared to be functioning normally. Patching both simultaneously was the right call.

For background on how Microsoft’s Malware Protection Engine underpins Defender’s scanning capabilities, Microsoft’s official Defender documentation provides a clear technical overview of the engine architecture and how automatic updates work.

How to Verify Your System Is Protected Against the Defender Disk Space Bug

Checking whether the Defender disk space bug patch has been applied is straightforward โ€” you just need to confirm your engine version. Follow these steps:

  1. Open Windows Security from the Start menu or system tray.
  2. Click Virus & threat protection, then scroll down to Virus & threat protection updates.
  3. Click Check for updates and allow any pending definition and engine updates to install.
  4. Return to that screen and click Protection updates. Look for the Antimalware Client Version and the Engine Version.
  5. Confirm the Engine Version reads 1.1.26060.x or higher. If it does, the CVE-2026-33825 patch is applied.

Alternatively, open PowerShell as Administrator and run:

Get-MpComputerStatus | Select-Object AMEngineVersion, AMProductVersion

The AMEngineVersion field will show the currently installed engine version at a glance. Any version at or above 1.1.26060 confirms you are protected.

What to Do If You Are Still Vulnerable

Windows Defender disk space bug impact compared across Windows 10 and Windows 11

If your engine version is below the patched threshold, take these steps immediately:

  • Force a Windows Update: Go to Settings โ†’ Windows Update โ†’ Check for updates. Install all pending updates, including optional security updates.
  • Manually trigger a Defender update: Open Windows Security โ†’ Virus & threat protection โ†’ Protection updates โ†’ Check for updates.
  • Check your internet connection: Defender pulls engine updates automatically, but a broken connection or metered network setting can silently block them.
  • Temporarily monitor disk usage: Open Task Manager and keep an eye on disk write activity from MsMpEng.exe (the Defender engine process). Abnormally high sustained writes are a red flag.
  • Contact your IT department if you are on a corporate device โ€” enterprise environments may manage Defender engine updates through WSUS or Microsoft Endpoint Configuration Manager on a separate schedule.

Is Windows 11 Safer Than Windows 10 Against This Defender Flaw?

Both Windows 10 and Windows 11 were equally vulnerable to this specific Windows Defender flaw because the attack targets the shared Malware Protection Engine, not OS-level architecture differences. However, Windows 11 does include additional hardware-rooted security features โ€” such as TPM 2.0 enforcement, Secure Boot, and Virtualization-Based Security (VBS) โ€” that can limit the blast radius of other exploit types. For this particular bug, those features offered no meaningful protection.

That said, keeping your OS on its most current version is always sound practice. If you are still on Windows 10 and thinking about upgrading, our Windows 11 Pro licence category has options from as little as โ‚ฌ12.90 โ€” a small investment compared to the cost of a compromised or unusable system.

For those who want to understand compatibility before committing, we also have a dedicated guide on checking Windows 11 system requirements before you upgrade โ€” worth reading if your hardware is a few years old.

Broader Lessons from the Windows Defender Disk Space Vulnerability

The CVE-2026-33825 episode reinforces a truth that security professionals repeat but many users still underestimate: security software is itself an attack surface. The same elevated privileges that allow Defender to intercept and neutralise threats are the very reason a flaw in Defender can cause such catastrophic damage. Antivirus products from every vendor have faced similar issues over the years โ€” this is not a reason to abandon Defender, but it is a reason to treat its updates with the same urgency you give OS-level patches.

Key takeaways for any Windows user:

  • Automatic updates should be on at all times โ€” engine definition updates arrive independently of monthly Patch Tuesday cycles, and the gap between vulnerability disclosure and patch deployment is exactly when attackers strike.
  • Monitor your disk usage periodically. A drive filling up with no obvious cause is a reliable early warning signal of either a disk-related exploit or a rogue process.
  • Consider layered security. Defender provides a solid baseline, but pairing it with good browsing habits, a hardware firewall, and regular system backups significantly raises the bar for any attacker.
  • Stay informed. Out-of-band updates like the one addressing this flaw are rare and published in Microsoft’s Security Response Center โ€” bookmarking it costs nothing and could save you a disaster.

Frequently Asked Questions

What exactly is the Windows Defender disk space vulnerability (CVE-2026-33825)?

CVE-2026-33825 is a flaw in Microsoft’s Malware Protection Engine โ€” the scanning core shared by Windows Defender, Microsoft Security Essentials, and Endpoint Protection โ€” that lets a remote attacker cause Defender to write unlimited data to your hard drive. The result is a completely full disk, which prevents the system from operating normally. Microsoft released an out-of-band patch in July 2026 to fix it.

Does the Defender disk space bug affect Windows 10 only, or Windows 11 too?

Both are affected. The vulnerability lives in the Malware Protection Engine, which is shared across Windows 10 and Windows 11. Neither OS version provides inherent protection against this specific flaw โ€” only applying the engine update (version 1.1.26060 or higher) resolves it.

How quickly does Windows Defender update its engine automatically?

Defender engine and definition updates are typically delivered within hours of release via Windows Update and Microsoft Update servers. However, the update can be delayed on metered connections, managed enterprise environments, or devices with Windows Update paused. This is why manually checking for updates immediately after a critical advisory is always a good idea.

Can I tell if my disk was already attacked before I patched?

If your system drive filled up unexpectedly around July 2026 with no obvious cause, and disk write activity from MsMpEng.exe was unusually high, there is cause for concern. Run a full Defender scan after patching, check Windows Event Viewer under Windows Logs โ†’ Application for Defender-related errors, and consider running the Windows Disk Cleanup tool to reclaim space before investigating further.

Should I switch from Windows Defender to a third-party antivirus because of this flaw?

Not necessarily. Every major antivirus product has had critical vulnerabilities over the years โ€” this is not unique to Defender. Defender’s integration with Windows, its automatic engine updates, and its zero additional cost make it a strong baseline for most users. What this incident highlights is the importance of keeping auto-updates enabled and monitoring your system health, regardless of which AV you use.

Is there a known CVE number for the related privilege escalation bug mentioned alongside CVE-2026-33825?

Yes โ€” the companion vulnerability is tracked as CVE-2026-41091. It is a separate privilege escalation flaw in the same Microsoft Malware Protection Engine that allowed attackers to gain administrative control even when real-time protection appeared operational. Both CVE-2026-33825 and CVE-2026-41091 were addressed together in Microsoft’s July 2026 out-of-band security update.

Windows GDID data streams flowing from a PC in 2025

Windows GDID Telemetry: What Microsoft Tracks and How to Audit It

Windows telemetry is not new โ€” but the emergence of the Global Device ID (GDID) system has reignited serious concerns about exactly how much Microsoft knows about you. GDID tracking ties a persistent identifier to every Windows installation, enabling Microsoft to correlate your browsing history, gaming sessions, hardware configuration, and application usage across time. This guide breaks down what GDID collects, why it matters, and the practical steps you can take to audit and limit Windows data collection on your own machine.

What Is the GDID and Why Does It Matter?

Diagram comparing required and optional Windows telemetry data collection tiers

The Global Device ID is a persistent, hardware-bound identifier assigned to 100% of Windows devices. Unlike a simple session cookie, GDID survives reinstalls, user account changes, and browser resets. Because it is anchored to device hardware, it creates a long-lived fingerprint that Microsoft’s telemetry pipeline can use to correlate data points over months or years.

According to a widely discussed thread in the sysadmin community, GDID-linked telemetry events have been observed capturing:

  • Full browsing history from Microsoft Edge and integrated Windows search

  • Game titles launched, session lengths, and Xbox activity

  • Device hardware IDs, driver versions, and firmware data

  • Installed application lists and update history

  • Crash dumps, error logs, and diagnostic event metadata

  • Location data tied to Wi-Fi and network identifiers

  • Authentication tokens and certificate metadata used in Windows Hello

The concern is not merely that data is collected โ€” Microsoft openly acknowledges diagnostic data collection โ€” but that GDID allows disparate data points to be stitched into a detailed behavioural profile without users realising it is happening.

Two Tiers of Windows Data Collection Explained

Windows telemetry operates under two official tiers, and understanding them is the first step toward controlling GDID tracking.

Required Diagnostic Data

This is the minimum level Microsoft mandates on Windows 11 Pro and Home. It covers device health, OS version, crash reports, and basic hardware inventory. You cannot fully disable required diagnostic data on consumer editions โ€” Microsoft’s own documentation on configuring Windows diagnostic data confirms that only Windows 11 Enterprise and Education editions allow the telemetry level to be set to Off via Group Policy.

Optional Diagnostic Data

This broader tier includes browsing behaviour, app usage patterns, inking and typing samples, and more granular device activity. It is opt-in by default on clean installs โ€” but many users unknowingly enable it during the out-of-box experience (OOBE) or via recommended settings prompts. This is the tier most closely associated with GDID-linked behavioural profiling.

How Windows GDID Tracking Differs from Standard Telemetry

Windows telemetry audit settings panel showing diagnostic data controls in Windows 11

Standard Windows data collection uses rotating identifiers that periodically reset. GDID tracking is different: the identifier persists because it is derived from hardware attributes. Researchers examining Windows telemetry event logs have found GDID values present in events sent across multiple telemetry categories โ€” including both required and optional data streams โ€” meaning the identifier can survive even if a user reduces their diagnostic data level.

This persistence is what elevates GDID above routine crash reporting. A crash report is a single data point. A GDID-anchored stream is a timeline: every browsing session, every game launch, every error โ€” all attributed to the same device identity over its entire lifespan.

How to Audit Your Windows Telemetry Data

Command prompt showing steps to restrict Windows data collection and GDID tracking

Windows telemetry audit tools let you see what is actually being transmitted before you decide what to restrict. Here are the most effective approaches.

Use the Diagnostic Data Viewer

Microsoft provides a built-in Diagnostic Data Viewer app in the Microsoft Store. Once enabled in Settings, it logs every diagnostic event your device sends. To activate it:

  1. Go to Settings โ†’ Privacy & security โ†’ Diagnostics & feedback

  2. Toggle Diagnostic data viewer to On

  3. Click Open Diagnostic Data Viewer to browse event categories

The viewer shows event names, timestamps, and data payloads in JSON format โ€” including events that carry GDID-linked device identifiers. Reviewing the Common Data category is particularly revealing, as it contains the persistent device identifiers included with nearly every telemetry event.

Inspect Windows Event Logs

Advanced users can open Event Viewer โ†’ Applications and Services Logs โ†’ Microsoft โ†’ Windows โ†’ DiagTrack to see raw telemetry dispatch records. The DiagTrack (Connected User Experiences and Telemetry) service is the primary pipeline through which GDID-associated data flows.

Network-Level Monitoring

Tools such as Wireshark or a Pi-hole DNS sinkhole allow you to observe outbound connections to Microsoft’s telemetry endpoints in real time. Key endpoints include settings-win.data.microsoft.com, vortex.data.microsoft.com, and telemetry.microsoft.com. Observing traffic volume and frequency gives a realistic picture of how active Windows data collection is on your device.

Steps to Restrict Windows Data Collection

You cannot achieve zero telemetry on consumer Windows editions, but you can substantially reduce the scope of GDID tracking and Windows data collection with these steps.

Turn Off Optional Diagnostic Data

Navigate to Settings โ†’ Privacy & security โ†’ Diagnostics & feedback and set the level to Required diagnostic data only. Also disable:

  • Tailored experiences โ€” this restricts GDID from being used for personalised advertising and tips

  • Send optional diagnostic data

  • Improve inking and typing

Disable Activity History

Go to Settings โ†’ Privacy & security โ†’ Activity history and turn off Store my activity history on this device and Send my activity history to Microsoft. Activity history is one of the primary mechanisms through which browsing and app-usage timelines are built in conjunction with GDID tracking.

Adjust Advertising ID Settings

Under Settings โ†’ Privacy & security โ†’ General, disable the advertising ID. While separate from GDID, the advertising ID is frequently cross-referenced with GDID data to build richer user profiles for Microsoft’s advertising network.

Use Group Policy or Registry Edits (Pro and Enterprise)

Windows 11 Pro users can open Group Policy Editor (gpedit.msc) and navigate to Computer Configuration โ†’ Administrative Templates โ†’ Windows Components โ†’ Data Collection and Preview Builds. Setting the Allow Diagnostic Data policy to Diagnostic data off (not recommended) reduces telemetry further, though Microsoft notes this may affect some Windows Update and security features. Alternatively, via Command Prompt (elevated):

  • sc config DiagTrack start= disabled โ€” disables the Connected User Experiences and Telemetry service

  • sc config dmwappushservice start= disabled โ€” disables the WAP push message routing service used for some telemetry flows

Restart the PC after applying these changes. Note that major Windows updates can re-enable these services, so it is worth rechecking after each feature update.

Does Choosing a Clean Windows Licence Help?

Starting fresh with a clean Windows install โ€” rather than an OEM-bloated machine from a retailer โ€” gives you full control over the OOBE privacy prompts where many users unknowingly consent to optional data collection. During setup, take the time to decline optional telemetry, disable activity history, and opt out of tailored experiences at every prompt.

If you are considering a fresh install or moving to a new device, you can pick up a genuine Microsoft Windows 11 Pro licence or a Windows 11 Home licence at Buy Now Key โ€” both come with lifetime activation and instant digital delivery, so you can set up a clean environment on your own terms from day one.

Windows 10 vs Windows 11: Does Telemetry Differ?

Both Windows 10 and Windows 11 implement the same two-tier diagnostic data model, and both use GDID-style persistent device identifiers in their telemetry pipelines. Windows 11 introduced some additional telemetry categories around Copilot AI interactions and the new Start menu and widgets feed, which can send usage signals back to Microsoft. In practice, Windows 11’s deeper integration of Microsoft account sign-in and the Microsoft Store means more data surfaces are active by default compared to a minimally configured Windows 10 installation.

That said, the controls available are broadly equivalent between the two versions โ€” the same Settings paths, the same Group Policy keys, and the same service-disabling commands apply to both.

FAQ

What exactly does Windows GDID stand for, and is it officially documented by Microsoft?

GDID stands for Global Device ID. Microsoft references persistent device identifiers in its diagnostic data documentation, though the specific term “GDID” has surfaced primarily through independent security research and telemetry event log analysis rather than prominent consumer-facing documentation. Microsoft’s official diagnostic data configuration guide confirms that a device-level identifier is included in most telemetry events.

Can I completely turn off Windows telemetry on Windows 11 Home or Pro?

No. Microsoft requires a minimum level of required diagnostic data on Home and Pro editions and does not provide an in-product option to set telemetry to zero. Only Enterprise and Education licences support the full Off policy setting via Group Policy. You can reduce the scope significantly by disabling optional data, activity history, the advertising ID, and by stopping the DiagTrack service โ€” but some baseline telemetry will still be sent.

Does disabling the DiagTrack service break Windows Update?

Disabling DiagTrack does not directly break Windows Update functionality. However, Microsoft warns that reduced telemetry may limit its ability to target quality updates to your specific device configuration, and some Windows Insider and feedback features will stop working. Security patches and cumulative updates still download and install normally in most cases.

Will a fresh reinstall reset the Windows GDID?

Because GDID is derived from hardware attributes, a standard OS reinstall on the same hardware is unlikely to generate a new GDID. Changing core hardware components โ€” such as the motherboard โ€” may result in a new identifier being generated, but this is impractical as a privacy measure for most users. Limiting what data flows through the GDID (by restricting optional telemetry) is more practical than trying to reset the identifier itself.

Does Windows 11 Pro offer better privacy controls than Windows 11 Home?

Yes, in a meaningful way. Windows 11 Pro includes access to Group Policy Editor and additional registry-level controls that are not available in the Home edition. This gives Pro users finer-grained options for restricting Windows data collection, disabling specific telemetry categories, and managing enterprise-style privacy configurations โ€” even for home users who are technically inclined.

Windows 10 security updates extended deadline shown on PC screen 2027

Windows 10 Security Updates Extended to October 2027: What You Need to Know

Microsoft has extended free Windows 10 security updates to October 12, 2027 โ€” a second consecutive year of extension that gives hundreds of millions of users more breathing room before they must upgrade. If you’re still running Windows 10 and wondering what this means for your PC, this guide breaks down everything clearly: who qualifies, what’s actually covered, and whether now is still the right time to move to Windows 11.

What Microsoft Just Announced About Windows 10 security updates

Timeline showing Windows 10 extended security updates milestones through October 2027

Microsoft’s Extended Security Updates (ESU) programme for Windows 10 was originally set to end in October 2025, then extended once to October 2026 โ€” and now, in a move that caught many observers by surprise, it has been extended a second time to October 12, 2027. The update was made quietly, with no major press release, but the implications are significant for the estimated 700โ€“800 million devices still running Windows 10 worldwide.

The programme delivers critical and important security patches only โ€” not feature updates or quality-of-life improvements. Think of it as a security safety net rather than a full support package. Still, for users who cannot or do not want to upgrade right now, it is a genuine lifeline.

Who Qualifies for Free Windows 10 Extended Support?

Not every Windows 10 device automatically receives these extended patches. To be eligible, your PC must meet specific conditions laid out on the official Microsoft Windows 10 ESU page.

  • Version requirement: Your device must be running Windows 10, version 22H2 โ€” the final feature release of Windows 10. Older versions (21H2, 20H2, etc.) are not eligible.

  • Microsoft account: Consumer devices need to be signed in with a Microsoft account to enrol in the programme for free.

  • Enrolment window: You can enrol at any point up to October 12, 2027, but Microsoft warns that unenrolled devices are more vulnerable in the meantime.

  • Business devices: Commercial and education customers can purchase ESU licences separately โ€” pricing varies by volume and agreement type.

If your device meets these criteria, head to Settings > Update & Security > Windows Update โ€” if eligible, you’ll see an option to enrol directly from there.

What Windows 10 ESU Actually Covers โ€” and What It Doesn’t

Windows 10 ESU is narrowly focused on security. Here is a plain-English breakdown of what you get and what you don’t:

What Is Included

  • Critical security patches addressing actively exploited vulnerabilities

  • Important security updates covering high-severity CVEs

  • Patches aligned to Microsoft’s monthly Patch Tuesday schedule

What Is Not Included

  • New features or interface improvements

  • Performance optimisations and non-security bug fixes

  • Support for new hardware drivers or peripherals beyond existing compatibility

  • AI features like Copilot+ (these are Windows 11 exclusive)

In short, Windows 10 extended support keeps your machine safe from the worst threats โ€” but it won’t make your PC feel newer or faster. It buys you time, not evolution.

Why Microsoft Extended Windows 10 ESU Again

Windows 10 security updates versus Windows 11 upgrade options side by side

The blunt reality is adoption: Windows 11 uptake has been slower than Microsoft anticipated. A significant factor is the strict hardware requirement โ€” Windows 11 requires a TPM 2.0 chip and a compatible processor, locking out a large portion of the global PC installed base. Rather than leave those users completely exposed, Microsoft has chosen to extend the Windows 10 security updates programme.

There is also a practical business dimension. An abrupt end-of-support deadline creates pressure for device replacement cycles, but it also creates security headlines that damage trust in the Windows brand. Extending ESU is Microsoft threading the needle: it keeps users protected, avoids a PR crisis, and still maintains a firm deadline โ€” October 2027 is now being treated as the hard stop.

Should You Upgrade to Windows 11 Now or Wait?

This is the practical question most Windows 10 users are asking. The honest answer depends on your hardware.

Upgrade Now If Your PC Is Compatible

If your device meets Windows 11’s system requirements, there is no compelling reason to stay on Windows 10. You gain a more modern, secure platform with ongoing feature development, better AI integration, and a longer support runway. Windows 10 updates 2027 are a patch, not a destination.

Stay on Windows 10 If Your Hardware Is Incompatible

If your CPU or motherboard does not support TPM 2.0, upgrading to Windows 11 legitimately is not straightforward. In this case, the ESU programme gives you until October 2027 to plan your next move โ€” whether that is buying a new PC, purchasing a refurbished machine that meets the requirements, or evaluating alternative operating systems.

Plan Your Budget Now

If you know your current PC will not make the cut, October 2027 is not that far away. Starting to budget for a new device or an upgrade licence today makes far more sense than waiting until the final weeks. Licences for Windows 11 Pro retail start from as little as โ‚ฌ17.90 at Buy Now Key โ€” making the transition more affordable than many users expect.

How to Upgrade to Windows 11 Without Breaking the Bank

Six practical security steps to stay protected on Windows 10 ESU until 2027

One of the biggest misconceptions is that upgrading to Windows 11 means buying a new machine. If your hardware is compatible, all you need is a valid Windows 11 licence. Buy Now Key stocks the full range of Windows 11 editions at competitive prices:

Each licence comes with instant digital delivery and lifetime activation. If you want to bundle your operating system with an Office suite, Windows 11 Pro with Office 2024 Professional Plus is available from โ‚ฌ27.80 (regular price โ‚ฌ37.85) โ€” a sharp saving on buying them separately.

Staying Secure with Windows 10 ESU until 2027: Practical Steps

Whether you upgrade now or use the full Windows 10 ESU runway, security hygiene matters. Patches alone cannot protect a machine where other attack surfaces are left open. Follow these practical steps:

  1. Enrol in ESU immediately โ€” go to Settings > Update & Security > Windows Update and follow the prompts to join the programme with your Microsoft account.

  2. Enable automatic updates โ€” do not manually defer security patches. Set Windows Update to install updates automatically so no Patch Tuesday is missed.

  3. Keep your browser and third-party apps updated โ€” most modern attacks exploit browser vulnerabilities or outdated software like Adobe Reader and Java, not Windows itself.

  4. Run Windows Security (Defender) โ€” Windows 10 22H2 includes Microsoft Defender Antivirus. Ensure real-time protection is active and virus definitions are current.

  5. Be cautious with email attachments and downloads โ€” phishing remains the number one initial access vector. No OS patch protects against social engineering.

  6. Back up your data regularly โ€” regardless of OS version, an offline or cloud backup protects you from ransomware that even a patched system might not block.

The Bigger Picture: What Windows 10 extended support to October 2027 Really Means

October 12, 2027 is not a suggestion โ€” it is the final date for Windows 10 extended support, and Microsoft has now stated twice that it intends this to be the last extension. After that date, Windows 10 devices will receive no further security patches, leaving them increasingly exposed as new vulnerabilities are discovered and exploited.

History offers a cautionary tale: when Windows 7 reached end of support in January 2020, unpatched machines became easy targets. The WannaCry ransomware attack of 2017 โ€” which infected over 200,000 computers across 150 countries โ€” exploited a Windows vulnerability that Microsoft had already patched for supported systems. Users on end-of-life versions had no such protection.

The lesson is clear: use the extra time wisely. Plan your upgrade, check your hardware compatibility, and set a personal deadline well before October 2027. Do not let procrastination leave you running an unprotected machine.

Windows 10 vs Windows 11: Is the Upgrade Actually Worth It?

Beyond security, Windows 11 brings a genuinely improved experience โ€” particularly for users with modern hardware. The redesigned Start menu and taskbar take some adjustment, but the performance improvements on 12th-generation Intel and AMD Ryzen 5000-series processors or newer are measurable. DirectStorage technology cuts game load times significantly on NVMe SSDs, and Copilot integration makes AI assistance available directly in the OS.

For productivity users, Windows 11 Pro adds features like BitLocker encryption, Hyper-V virtualisation, and Windows Sandbox โ€” tools that matter if you handle sensitive files or need to test software safely. If you’re currently on Windows 10 extended support and your hardware qualifies, the upgrade is well worth it โ€” especially at the affordable licence prices available through Buy Now Key.

Frequently Asked Questions

Is the Windows 10 ESU programme really free for home users?

Yes โ€” for consumer devices running Windows 10 version 22H2 and signed in with a Microsoft account, enrolment in the Extended Security Updates programme is free until October 12, 2027. Business and enterprise customers are required to purchase ESU licences through Microsoft’s commercial channels.

Will my Windows 10 PC automatically get the extended security updates?

Not necessarily. Your device must be on Windows 10 version 22H2 and you must enrol in the ESU programme via Settings > Update & Security > Windows Update. Once enrolled, updates arrive automatically through the standard Windows Update mechanism.

What happens to my Windows 10 PC after October 2027?

After October 12, 2027, Microsoft will issue no further patches for Windows 10 โ€” including security fixes. Your PC will continue to function, but every new vulnerability discovered after that date will remain permanently unpatched. Running an unpatched internet-connected PC carries growing risk over time.

Can I upgrade from Windows 10 to Windows 11 for free?

Microsoft’s free in-place upgrade path for eligible hardware was offered during the initial Windows 11 launch period. While Microsoft has not officially closed the free upgrade, it is no longer formally advertised. If your PC meets Windows 11’s hardware requirements, it’s worth checking Windows Update โ€” some eligible devices are still offered the upgrade. Alternatively, purchasing a Windows 11 licence from Buy Now Key is an affordable and hassle-free route.

What is the minimum spec needed for Windows 11?

Windows 11 requires a 64-bit processor running at 1 GHz or faster with at least 2 cores, 4 GB of RAM, 64 GB of storage, and โ€” critically โ€” a TPM 2.0 chip. The processor must appear on Microsoft’s supported CPU list, which includes 8th-generation Intel Core and AMD Ryzen 2000-series or newer. You can check your PC’s readiness using the Windows 11 compatibility guide on Buy Now Key.

Should I buy a new PC or just upgrade my licence?

If your current hardware meets Windows 11’s requirements, buying a new Windows 11 licence is the most cost-effective path โ€” licences start from โ‚ฌ12.90 at Buy Now Key. If your hardware is incompatible (no TPM 2.0, unsupported CPU), a new or refurbished PC is the right move, and you can use the time until October 2027 to budget for it.

Windows 11 Fifth Anniversary celebration showing five years of OS evolution

Windows 11 Fifth Anniversary: Evolution, Adoption & What’s Next

Windows 11’s fifth anniversary in June 2026 marks one of the most turbulent and ultimately triumphant chapters in Microsoft’s operating system history. Five years after launching on 5 October 2021, Windows 11 has gone from a divisive, hardware-gated release to commanding nearly 70% of global desktop Windows market share โ€” a journey that offers sharp lessons for both Microsoft and the millions of users who resisted the switch for years.

A Rocky Launch That Almost Defined the Windows 11 Milestone

Windows 11 evolution timeline from 2021 launch to 2026 anniversary milestone

The Windows 11 milestone was shaped from day one by controversy. Microsoft’s decision to require a Trusted Platform Module (TPM 2.0), Secure Boot, and a relatively modern CPU immediately locked out a massive portion of the global PC install base. Machines just a few years old were declared incompatible, frustrating users and IT departments alike. For context, Windows 10 had welcomed almost any hardware from the last decade โ€” so the step backward in accessibility felt jarring.

The redesigned Start Menu โ€” moved to the centre of the taskbar โ€” drew immediate backlash. Long-time users found muscle memory shattered, and early builds lacked basic features like the ability to drag files onto taskbar icons. Windows 11 felt unfinished at launch, and reviewers were largely lukewarm. It took well into 2022 before update 22H2 restored enough functionality โ€” including tabbed File Explorer โ€” to convince mainstream users the OS deserved a second look.

How the Windows 11 Evolution Unfolded Year by Year

The Windows 11 evolution across five years follows a recognisable arc: rough launch, gradual refinement, and finally a feature set that genuinely differentiates the OS from its predecessor.

  • 2021 (Launch): Core redesign with rounded corners, a centred taskbar, and Snap Layouts. TPM 2.0 requirement causes widespread hardware compatibility outcry.
  • 2022 (22H2): Tabbed File Explorer, improved Snap, drag-and-drop restored to the taskbar. Adoption begins climbing slowly but remains far behind Windows 10.
  • 2023 (23H2): Copilot AI assistant integration arrives. Windows Subsystem for Android discontinued. Microsoft leans into AI as the differentiating narrative.
  • 2024 (24H2): Deeper Copilot+ PC features, Recall (with significant privacy controversy), HDR background support, and energy-saving improvements. The AI pivot becomes undeniable.
  • 2025: Windows 10 officially reaches end-of-life in October 2025, triggering a surge of forced upgrades. By July 2025, Windows 11 overtakes Windows 10 for the first time, holding roughly 51% of the global desktop Windows share according to StatCounter’s live data.
  • 2026: The gap widens dramatically. By mid-2026, Windows 11 commands approximately 70% of the Windows desktop market. The fifth anniversary arrives with the OS finally secure in its position.

The Windows 11 Development Shift: From Features to AI

Windows 11 development adoption curve reaching 70 percent market share in 2026

Perhaps the most significant aspect of the Windows 11 development story over five years is the philosophical pivot Microsoft made around 2023. The early narrative โ€” cleaner design, better performance on modern hardware โ€” gave way to a new one: Windows as an AI platform. Copilot integration, Copilot+ PC certification, and the controversial Recall feature (which screenshots activity for AI-powered search) redefined what Microsoft thought Windows should be.

This is not a trivial shift. For decades, Windows development was about backward compatibility, broad hardware support, and stability. Windows 11 broke that mould deliberately, betting that the future belonged to AI-capable silicon โ€” Neural Processing Units (NPUs) included. The Copilot+ PC requirement (a capable NPU, at least 16 GB RAM, and fast storage) introduced a new tier of “premium Windows” hardware that some analysts compare to Apple’s tight hardware-software integration.

Whether that bet pays off remains to be seen, but the fifth anniversary of Windows 11 development finds Microsoft more committed to this direction than ever. The Windows Insider Blog’s June 2026 preview builds show continued iteration on AI-driven features within Windows 11.

Adoption Challenges That Slowed the Windows 11 Milestone

Understanding the Windows 11 milestone means understanding why it took so long. The adoption gap was not simply stubbornness. Three real barriers slowed the rollout:

  1. Hardware requirements: Millions of PCs โ€” including corporate fleets purchased in 2018 and 2019 โ€” did not meet the TPM 2.0 or CPU requirements. Organisations faced the choice of paying for mass hardware refreshes or staying on Windows 10.
  2. Feature regression at launch: IT admins and power users found missing Group Policy options, a broken taskbar with no native drag-and-drop, and removed widgets. Until 22H2 and 23H2, Windows 11 felt less capable than its predecessor in many enterprise workflows.
  3. User inertia and distrust: The Windows 8 and Windows 8.1 era had taught users to be sceptical of radical redesigns. Many users consciously waited to see if Windows 11 would be “another Windows 8” โ€” a cautious instinct that, early on, was not entirely unreasonable.

The tipping point came when Windows 10 support officially ended in October 2025. Without security patches, businesses and consumers had little choice. That deadline converted reluctance into action, and the market share data reflects it starkly: Windows 11 grew from around 51% in July 2025 to approximately 70% by mid-2026, according to StatCounter.

What Windows 11 Development Lessons Mean for Microsoft’s Future

Upgrading to Windows 11 on a modern PC showing setup installation screen

The lessons embedded in five years of Windows 11 evolution are instructive. Microsoft has signalled โ€” through its public statements and update cadence โ€” that it has heard the criticism. In early 2026, Pavan Davuluri, Microsoft’s head of Windows, acknowledged user feedback and committed to improvements in reliability and transparency. The company appears to be recalibrating after the Recall privacy controversy and the initial Copilot integration complaints.

Key takeaways for Microsoft going forward:

  • Hardware gates create long-tail resistance. Forcing a hardware floor raises security and performance baselines, but it also means years of lower adoption. Microsoft will likely be more cautious about future hardware mandates.
  • AI features need to earn trust, not just ship. Recall was delayed and redesigned multiple times due to privacy concerns. Future AI features in Windows will face intense scrutiny, and Microsoft must lead with transparency.
  • Stability beats novelty. The updates that drove the most positive user sentiment โ€” tabbed File Explorer, restored taskbar functionality โ€” were not flashy. They fixed what was broken. Users value predictability.
  • End-of-life deadlines remain Microsoft’s most powerful migration tool. The October 2025 Windows 10 end-of-life achieved in twelve months what years of marketing could not.

Should You Upgrade Now? The Windows 11 Anniversary Case for Acting

If you are still running Windows 10 after its end-of-life, the Windows 11 anniversary is a sensible prompt to act. Windows 10 is no longer receiving security patches from Microsoft, meaning every day on the old OS is an increasing security liability. Windows 11 today โ€” after five years of refinement โ€” is a substantially more polished OS than it was at launch. The UI quirks have largely been resolved, performance on compatible hardware is strong, and the AI features (while optional) add genuine utility for those who choose to engage with them.

Before upgrading, it is worth checking whether your hardware meets the requirements. Our detailed guide on Windows 11 system requirements walks you through exactly what your PC needs โ€” and what your options are if it falls short.

If your hardware qualifies and you are ready to make the move, Buy Now Key offers genuine Windows 11 licences at competitive prices. Microsoft Windows 11 Pro โ€“ Retail is available from just โ‚ฌ17.90, delivering lifetime activation on a single device with global language support. For home users, Windows 11 Home OEM starts from โ‚ฌ9.65 โ€” a straightforward, cost-effective way to get legitimate, fully activated Windows 11 on a compatible machine.

Five Years On: The Windows 11 Milestone in Context

Put the Windows 11 anniversary in historical context and a familiar pattern emerges. Windows XP was beloved but replaced reluctantly. Windows Vista was a stumble. Windows 7 restored confidence. Windows 8 polarised. Windows 10 became the universal constant. Windows 11, judged at its fifth birthday, looks more like the Windows 7 of its generation: a version that started rough, spent years earning trust, and eventually became the default choice not because it was perfect, but because it was clearly better than staying put.

The real story of the Windows 11 milestone is that Microsoft’s boldest hardware and design bets ultimately succeeded โ€” on a slower schedule than planned, and only after significant course corrections. The next five years will test whether the AI-platform vision for Windows delivers on its promise, or whether it represents the kind of overreach that users have historically punished.

Either way, at five years old, Windows 11 is no longer the new kid on the block. It is the operating system running on seven in every ten Windows PCs worldwide. That is a milestone worth examining โ€” and for those still on the fence, a clear signal that the time to upgrade has well and truly arrived.

FAQ

When did Windows 11 officially launch?

Windows 11 officially launched on 5 October 2021. It was announced in June 2021 and marked the first major version increment for Windows in six years, following Windows 10’s release in 2015. The fifth anniversary of the launch falls in October 2026, though the mid-year anniversary is commonly counted from the June 2021 announcement.

Why did Windows 11 take so long to surpass Windows 10 in adoption?

The primary barriers were strict hardware requirements (TPM 2.0, Secure Boot, compatible CPUs), early feature regressions at launch, and genuine user distrust following the Windows 8 era. Many organisations deferred upgrades until Windows 10 reached end-of-life in October 2025, which triggered the biggest adoption surge. It was not until mid-2025 that Windows 11 finally overtook Windows 10 in global market share.

What is Windows 11’s market share in 2026?

According to StatCounter data, Windows 11 holds approximately 70% of the global desktop Windows market as of mid-2026, up from roughly 51% in July 2025. The dramatic growth follows Windows 10’s end-of-life in October 2025, which pushed millions of users and organisations to upgrade. Windows 10 retains around 28% of the market despite having no active security support from Microsoft.

Is Windows 11 worth upgrading to in 2026?

Yes โ€” for the vast majority of users. After five years of updates, Windows 11 is a stable, polished OS with genuine improvements in security, performance, and AI-assisted features over Windows 10. More importantly, Windows 10 no longer receives security patches, making it a growing liability. If your hardware is compatible, upgrading is strongly recommended.

What does the Windows 11 development roadmap look like going forward?

Microsoft’s focus is squarely on AI-integrated features, particularly for Copilot+ certified PCs with capable NPUs. June 2026 Insider Preview builds continue to refine AI tools and system-level improvements. Microsoft has also committed publicly to improving reliability and transparency following user feedback about privacy concerns around features like Recall. The direction is clear: Windows as an AI-native platform.

Windows performance tuning dashboard showing CPU and RAM diagnostic graphs

Windows Performance Tuning: Hidden Built-In Tools That Actually Work

Windows performance tuning doesn’t require expensive software downloads or risky registry hacks โ€” the tools you need are already sitting inside Windows 10 and 11, quietly waiting to be used. Microsoft ships a surprisingly powerful set of diagnostic and optimisation utilities with every copy of Windows, yet most users never open them. Whether your PC feels sluggish at boot, stutters during everyday tasks, or simply isn’t as snappy as it once was, these built-in utilities can deliver measurable, lasting improvements.

Why Built-In Tools Beat Third-Party Software for PC Performance Tuning

Built-in Windows speed optimisation tools versus third-party PC cleaner comparison

Third-party “PC cleaners” are notorious for doing very little while charging a premium โ€” or worse, bundling adware. For genuine PC performance tuning, Microsoft’s own tools have one unbeatable advantage: they are written specifically for Windows, tested against every patch cycle, and carry no installation risk. A 2023 analysis by Windows Forum documented that users who applied built-in optimisation steps โ€” startup management, disk clean-up, and Power Plan adjustments โ€” reported boot-time reductions of up to 40% on mid-range hardware, with no third-party utilities involved.

  • No installation or licence needed โ€” already part of Windows
  • No risk of bundled adware or conflicting drivers
  • Maintained and updated by Microsoft with every OS patch
  • Safe to use on business and home PCs alike

Resource Monitor: The Real-Time Performance Tuning Dashboard

Task Manager gets all the attention, but Resource Monitor is the tool serious users reach for when they need to tune up Windows properly. Press Win + R, type resmon, and hit Enter. You get live graphs for CPU, memory, disk, and network โ€” split by individual process. This lets you spot exactly which application is hammering your SSD or monopolising RAM, rather than just seeing a total percentage figure.

The Disk tab is particularly revealing: it shows read/write speeds per process in real time. If a background updater is constantly thrashing your drive during working hours, Resource Monitor will name it. You can then either end that process or adjust its scheduling through Task Scheduler โ€” another underused built-in tool covered below.

Reliability Monitor: Diagnose Before You Tune Up Windows

Before making any changes, it pays to understand why your PC is struggling. Reliability Monitor (search for it in the Start menu, or run perfmon /rel) presents a visual timeline of application crashes, Windows errors, and failed updates โ€” scored on a stability index from 1 to 10. Spotting a pattern (a specific app crashing daily, a driver update that broke stability) can save hours of guesswork.

Many users skip straight to performance fixes without realising an underlying software conflict is the real culprit. Reliability Monitor closes that gap โ€” it’s one of the most underused Windows speed optimisation diagnostic tools in the entire OS.

Windows Performance Recorder and Analyzer: Professional-Grade Tuning

Windows performance tuning with Storage Sense and Disk Cleanup tools open

For those who want to go deep, Microsoft ships the Windows Performance Toolkit as part of the Windows Assessment and Deployment Kit (Windows ADK). It contains two tools that professional system administrators use for Windows performance tuning on enterprise fleets:

  • Windows Performance Recorder (WPR) โ€” captures detailed system-wide traces of CPU scheduling, disk I/O, memory, and GPU activity.
  • Windows Performance Analyzer (WPA) โ€” opens those traces as interactive graphs, letting you zoom into millisecond-level events to find exactly where a slowdown originates.

According to Microsoft Learn’s official Windows Performance Toolkit documentation, WPR and WPA are designed to work on any Windows 10 or Windows 11 machine and require no special hardware. If your PC feels slow only during a specific workflow โ€” video editing, compiling code, booting โ€” these tools will pinpoint the bottleneck precisely.

Storage Sense and Disk Clean-Up: Reclaim Space for Windows Speed Optimisation

Fragmented, bloated storage is one of the most common causes of a slow PC โ€” and Windows has two built-in utilities to tackle it. Storage Sense (Settings โ†’ System โ†’ Storage) automatically clears temporary files, empties the Recycle Bin on a schedule you control, and removes old Windows update files that accumulate silently in the background. On a typical mid-range laptop, enabling Storage Sense can reclaim 5โ€“15 GB within the first run.

For a deeper clean, the legacy Disk Clean-Up tool (search “Disk Cleanup” in Start) offers a “Clean up system files” mode that targets Windows.old folders โ€” remnants of major OS upgrades that can consume 10โ€“20 GB. Run it after any feature update and you’ll notice an immediate difference in available space and, on spinning-disk drives, in read performance too.

Task Scheduler: The Secret Weapon for PC Performance Tuning

Most slow-down complaints happen at predictable times: right after boot, at lunchtime, at 3 AM when Windows Defender decides to run a full scan. Task Scheduler (run taskschd.msc) lets you see every automated task on your PC and reschedule them so they don’t clash with your working hours.

Practical Windows performance tuning steps in Task Scheduler include:

  1. Search for “Idle Maintenance” tasks and restrict them to off-peak hours.
  2. Locate antivirus scan tasks and shift them to overnight slots.
  3. Disable Windows Update delivery optimisation tasks if you’re on a metered connection.
  4. Check for redundant manufacturer tasks (OEM tools that phone home during business hours).

Power Plans: The Fastest Windows Speed Optimisation Tweak

Tune up Windows using SFC and DISM commands in elevated command prompt

Switching your Power Plan from “Balanced” to “High Performance” (or “Ultimate Performance” on Windows 11 Pro) is the single quickest tune up Windows users can make. Open Control Panel โ†’ Power Options or type powercfg.cpl in the Run box. On laptops, “High Performance” keeps the CPU at higher clock speeds, reducing the micro-stutters caused by aggressive power throttling. On desktops, where power draw is less of a concern, it’s almost always the right choice.

Windows 11 Pro users get an additional option: the Ultimate Performance plan, which disables core parking (a feature that powers down CPU cores to save energy) and removes sleep timers on components. It’s designed for workstations but works just as well on a home desktop that needs maximum responsiveness.

SFC and DISM: Repairing Windows from the Inside

Corrupted system files silently degrade performance over time โ€” and two command-line utilities built into every copy of Windows can repair them without a reinstall. Open an elevated Command Prompt (search “cmd”, right-click, Run as administrator) and run:

  1. sfc /scannow โ€” System File Checker scans and repairs protected Windows files. Allow 10โ€“15 minutes on a typical drive.
  2. DISM /Online /Cleanup-Image /RestoreHealth โ€” Deployment Image Servicing and Management repairs the Windows image itself, fixing deeper corruption that SFC cannot reach. Allow 15โ€“30 minutes.

Run SFC first, then DISM if SFC reports errors it cannot fix. Restart after both complete. Users on Reddit’s r/OptimizedGaming frequently report noticeably snappier boot times after running this sequence on PCs that had accumulated years of incremental updates.

Background Apps and Startup Management: Lean Is Fast

Every application that launches at startup or runs silently in the background consumes RAM and CPU cycles before you’ve even opened a browser. Windows performance tuning starts here for most users:

  • Startup Apps: Open Task Manager (Ctrl + Shift + Esc) โ†’ Startup Apps tab. Disable anything with a “High” startup impact that you don’t use daily.
  • Background Apps (Windows 11): Settings โ†’ Apps โ†’ Installed Apps โ†’ select an app โ†’ Advanced options โ†’ Background app permissions โ†’ set to “Never” for apps that don’t need to run silently.
  • Notification & widget feeds: Widgets in Windows 11 pull live news and weather data constantly. Disabling them (Settings โ†’ Personalisation โ†’ Taskbar โ†’ Widgets) reduces idle CPU and network usage.

According to Microsoft’s own Tips to improve PC performance in Windows, managing startup programs and background activity is consistently among the highest-impact changes ordinary users can make โ€” ahead of hardware upgrades in many scenarios.

Start With a Clean, Activated Windows Licence

All the tuning in the world is limited if your Windows installation itself is compromised by an unactivated or corrupted licence. An unactivated copy of Windows shows persistent nag screens, restricts personalisation, and can prevent some system-level optimisations from applying correctly. If you’re running Windows on an older or newly built PC, a genuine retail licence is the foundation everything else sits on.

At Buy Now Key, you’ll find genuine Windows licences at prices that make sense โ€” from Windows 11 Pro Retail (currently โ‚ฌ17.90 for a lifetime single-device activation) to Windows 10 Pro for users staying on the older platform. Both come with instant key delivery, global compatibility, and lifetime activation โ€” so your optimised installation stays legitimate long-term.

Frequently Asked Questions

Does Windows performance tuning actually make a noticeable difference?

Yes โ€” especially on PCs that have never had startup programs managed or background tasks reviewed. Users commonly report boot time reductions of 30โ€“50% just from disabling high-impact startup entries and switching to an appropriate Power Plan. More advanced steps like SFC/DISM and Resource Monitor analysis can resolve stuttering that has persisted through multiple hardware upgrades.

Is it safe to use built-in Windows tools to tune up Windows?

All the tools covered in this guide are Microsoft-signed, built into the OS, and carry no installation risk. The only exception is any Registry Editor changes โ€” not covered here โ€” which require more caution. Stick to the tools listed above and you won’t risk system stability.

How often should I run Windows speed optimisation steps?

A practical schedule: run Storage Sense automatically (set it to monthly), check Reliability Monitor after any major update or crash, review startup apps after installing new software, and run SFC/DISM once or twice a year or after a failed update. Power Plan and background app settings are one-time changes.

Does Windows 11 Pro have better performance tuning options than Windows 11 Home?

Yes โ€” Windows 11 Pro adds the Ultimate Performance power plan, Group Policy Editor for granular control over background services, and Hyper-V, which can affect how resources are allocated. For enthusiasts and professionals doing serious PC performance tuning, Pro is worth the modest price difference, particularly when paired with a clean retail licence.

Will these tuning steps work on Windows 10 as well as Windows 11?

Virtually all of them do. Resource Monitor, Reliability Monitor, SFC, DISM, Task Scheduler, Disk Clean-Up, and Power Plans are all present and work identically on Windows 10. The Background Apps setting and Widgets toggle are Windows 11-specific, but the overall approach to Windows performance tuning applies equally to both operating systems.