Windows may offer Windows 11 as a feature upgrade through Windows Update, sometimes after the files have already been downloaded or after a restart has been scheduled. The correct way to cancel the upgrade depends on where you are in the process: before download, after download, after restart is scheduled, or after Windows 11 has already been installed.
How to Cancel Windows 11 Upgrade: Choose the Right Scenario First
Before changing settings or deleting update files, identify your current upgrade state. This prevents unnecessary steps and reduces the risk of interrupting Windows Update at the wrong time.
| What You See | What It Means | Best Method |
|---|---|---|
| Windows 11 is offered, but not downloading | The upgrade is optional or waiting for confirmation | Pause updates or ignore the offer |
| Windows 11 is downloading | Upgrade files are being stored in the update cache | Pause updates, then clear downloaded files |
| Restart required to install Windows 11 | The upgrade is staged and waiting for reboot | Cancel scheduled restart and clear update cache |
| Windows 11 is already installed | The system has completed the feature upgrade | Use Settings โ System โ Recovery โ Go back |
| Go back button is missing | Rollback files were removed or the time limit expired | Restore from backup or clean install Windows 10 |
Stop Windows 11 Upgrade Before It Installs Using Windows Update Settings
If Windows 11 has been offered but the upgrade has not yet started, the safest option is to pause updates temporarily. This does not permanently block Windows 11, but it gives you time to back up files, decide whether to upgrade, or apply a more permanent block.
- Open Settings.
- Go to Windows Update.
- Click Pause updates.
- Select the longest pause period available.
- Restart the computer if Windows asks you to apply update-related changes.
On Windows 10, this section is located at Settings โ Update & Security โ Windows Update. On Windows 11, it is located at Settings โ Windows Update.
โฆ When this method is enough
- The Windows 11 upgrade is only being offered.
- No restart has been scheduled yet.
- You need a quick, reversible delay.
- You plan to upgrade later but not today.
โฆ When this method is not enough
- The upgrade has already downloaded.
- Windows says a restart is required.
- You want to block Windows 11 long-term.
- Windows 11 has already been installed.
Cancel a Pending Windows 11 Restart Before Installation Starts
If Windows Update says that a restart is required, Windows 11 may be staged for installation. You can usually postpone or cancel the scheduled restart from the Windows Update page before rebooting.
- Open Settings โ Windows Update.
- Look for a message such as Restart required or Schedule the restart.
- Click Schedule the restart if the option is available.
- Turn off scheduled restart or move it to a later time.
- Save your work and continue with the next section to remove downloaded upgrade files.
You can also disable automatic restarts while you are signed in by setting active hours:
- Open Settings โ Windows Update โ Advanced options.
- Open Active hours.
- Set the period when you normally use the computer.
- Return to Windows Update and confirm that no immediate restart is scheduled.
Remove Downloaded Windows 11 Upgrade Files from Windows Update Cache
When Windows 11 has already downloaded, Windows stores upgrade files in update cache folders such as
SoftwareDistribution. Clearing the cache can remove a staged upgrade and force Windows
Update to check again from a clean state.
Step 1: Stop Windows Update Services
Open Command Prompt as administrator or Windows Terminal as administrator, then run:
net stop wuauserv
net stop bits
net stop cryptsvc
net stop msiserver
Step 2: Rename the Update Cache Folders
Renaming is safer than deleting because Windows can recreate the folders while the old copies remain available temporarily.
ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
ren C:\Windows\System32\catroot2 catroot2.old
Step 3: Start the Services Again
net start wuauserv
net start bits
net start cryptsvc
net start msiserver
Step 4: Restart the Computer
Restart Windows and return to Settings โ Windows Update. The Windows 11 upgrade should no longer be in a pending installation state. If it appears again immediately, use the registry or group policy method below to keep Windows 10 on the current target version.
How to Roll Back from Windows 11 to Windows 10 After the Upgrade
If Windows 11 has already installed, the cleanest rollback method is the built-in
Go back option. It restores the previous Windows installation using files stored in
Windows.old and related rollback folders.
- Open Settings.
- Go to System โ Recovery.
- Find Recovery options.
- Next to Go back, click Go back.
- Select a reason for returning to Windows 10.
- Choose whether to check for updates.
- Read the warnings carefully and click Go back to Windows 10.
โฆ What usually stays
- Personal files in user folders
- Most installed desktop applications
- Most Windows 10 settings from before the upgrade
- Original user accounts
โฆ What may be lost
- Apps installed after upgrading to Windows 11
- Drivers updated after the upgrade
- Settings changed after the upgrade
- Files stored outside normal user folders if not backed up
Go Back Button Missing: How to Cancel Windows 11 After the Rollback Period
If Settings โ System โ Recovery โ Go back is unavailable, Windows probably removed the
rollback files. This can happen after the rollback period expires, after Disk Cleanup removes the
previous Windows installation, or after Windows.old is deleted manually.
Check Whether Windows.old Still Exists
- Open File Explorer.
- Open the system drive, usually C:.
- Look for a folder named Windows.old.
- If it is missing, the built-in rollback path is no longer available.
Your Options After the Rollback Files Are Gone
| Option | When to Use It | What to Expect |
|---|---|---|
| Restore a full system image | You created a backup before upgrading | Returns the PC to the saved Windows 10 state |
| Clean install Windows 10 | No rollback files or system image exist | Requires reinstalling apps and restoring files |
| Reset Windows 11 | You decide to stay on Windows 11 but want a clean system | Keeps Windows 11, not Windows 10 |
| Restore manufacturer recovery image | Your OEM recovery partition contains Windows 10 | May remove all files and bundled apps may return |
A clean install is the most reliable way to return to Windows 10 after the rollback window has passed, but it is also the most disruptive. Back up your data, prepare installers for essential applications, and download network or storage drivers before wiping the system.
Block Windows 11 Upgrade on Windows 10 Using Registry Editor
If you want to stay on Windows 10 and stop Windows Update from targeting Windows 11, you can set a target feature update version in the registry. This tells Windows Update to remain on a specified Windows 10 release instead of offering a feature upgrade to Windows 11.
Method A: Create the Values Manually
- Press Win + R, type
regedit, and press Enter. - Go to
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows. - Create a key named
WindowsUpdateif it does not exist. - Inside
WindowsUpdate, create a DWORD (32-bit) Value namedTargetReleaseVersion. - Set
TargetReleaseVersionto1. - Create a String Value named
ProductVersionand set it toWindows 10. - Create a String Value named
TargetReleaseVersionInfoand set it to22H2. - Restart the computer.
Method B: Use a Ready-to-Run REG File
Copy the text below into Notepad, save it as block-windows-11-upgrade.reg, then run it as
administrator.
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate]
"TargetReleaseVersion"=dword:00000001
"ProductVersion"="Windows 10"
"TargetReleaseVersionInfo"="22H2"
To undo this block later, delete those three values or remove the WindowsUpdate policy key
if it contains no other settings you need.
Prevent Windows 11 Upgrade with Local Group Policy Editor
On Windows 10 Pro, Enterprise, and Education editions, Group Policy provides a cleaner interface for the same type of upgrade control. Windows 10 Home normally does not include the Local Group Policy Editor, so Home users should use the registry method above.
- Press Win + R, type
gpedit.msc, and press Enter. - Go to Computer Configuration โ Administrative Templates โ Windows Components โ Windows Update โ Windows Update for Business.
- Open Select the target Feature Update version.
- Set the policy to Enabled.
- In Which Windows product version would you like to receive feature updates for?, type
Windows 10. - In Target Version for Feature Updates, type
22H2. - Click Apply, then OK.
- Restart the computer or run
gpupdate /forcein an elevated Command Prompt.
gpupdate /force
Troubleshooting: Windows 11 Upgrade Still Comes Back
If the Windows 11 upgrade reappears after you pause updates or clear the cache, check these common causes. Windows Update may re-evaluate device eligibility after every scan, especially if no target release policy is configured.
| Problem | Likely Cause | Fix |
|---|---|---|
| Upgrade returns after reboot | Only the restart was delayed | Clear update cache and set target release version |
| Windows Update downloads Windows 11 again | No blocking policy is active | Use Registry Editor or Group Policy |
| Registry values disappear | Third-party optimizer or corporate policy overwrote them | Check management tools and reapply policy |
| Go back fails | Rollback files are damaged or missing | Back up data and use system image or clean install |
| Update cache cannot be renamed | Windows Update service is still running | Stop services again or boot into Safe Mode |
Run the Windows Update Troubleshooter
If Windows Update becomes stuck after canceling the upgrade, run the built-in troubleshooter:
- Open Settings.
- Go to System โ Troubleshoot โ Other troubleshooters.
- Find Windows Update.
- Click Run and apply suggested fixes.
Repair System Files If Windows Update Is Broken
If update settings crash, services fail to start, or rollback produces errors, run DISM and SFC:
DISM /Online /Cleanup-Image /RestoreHealth
sfc /scannow
Restart the computer after the scans complete, then check Windows Update again.
FAQ: Canceling or Reversing the Windows 11 Upgrade
Can I cancel Windows 11 while it is downloading?
SoftwareDistribution folder. This removes downloaded update files and
forces Windows Update to scan again later.
Can I cancel Windows 11 after the PC has restarted?
How long do I have to go back from Windows 11 to Windows 10?
Windows.old before rolling back.
Will rolling back to Windows 10 delete my files?
Can I permanently block Windows 11 upgrade?
Is it safe to stay on Windows 10?
Best Way to Cancel Windows 11 Upgrade Without Losing Data
If Windows 11 has not installed yet, the best approach is: pause updates โ cancel any scheduled restart โ clear the update cache โ set a target release version policy. This stops the current attempt and helps prevent the upgrade from returning.
If Windows 11 is already installed, use Settings โ System โ Recovery โ Go back as soon as possible. If the rollback option is missing, your practical choices are restoring a system image or performing a clean Windows 10 installation after backing up your files.
Recommended Order
Start with the least destructive method: pause updates. If files already downloaded, clear the update cache. If Windows 11 already installed, use Go back. For long-term prevention, configure TargetReleaseVersion through Registry Editor or Group Policy.