How to remove a specific update in Windows 11: the ultimate guide

Last update: 22/04/2025
Author Isaac
  • Delete an update in Windows 11 It is possible from the settings, the Control Panel or advanced tools.
  • You should only uninstall specific updates if they cause problems, avoiding removing security patches.
  • You can clean up update residues and Temporary files to free up space without unnecessary risks.
  • It is always recommended to create a restore point before any major changes to the system.

remove specific Windows 11 update

Windows 11 has brought with it a new way of understanding system updates, with added features and a variety of methods to install, pause, or remove updates according to each user's needs.

However, it is well known that not all updates are perfect the first time. Have you noticed that your computer is performing worse after installing a recent patch? Or maybe you're short on disk space and want to get rid of old updates? In this article, you'll learn how to do it. All the possible ways to remove a specific update in Windows 11 safely, efficiently, and tailored to any skill level. You'll also learn to distinguish the types of updates, understand their consequences, and use advanced tools for complex situations.

Why might you want to remove a Windows 11 update?

Updates in Windows 11, although necessary for the security and proper functioning of the system, They can cause compatibility issues, unexpected errors, or consume resources. that you previously had free. Some users also prefer to avoid visual modifications or feature changes introduced by unwanted patches.

Among the most common reasons we find:

  • Malfunction of the system after installing a specific update (blue screens, crashes, slowness).
  • Incompatibility with some software or peripheral that used to work perfectly.
  • Loss of disk space due to temporary files or remnants of old updates.
  • Preference for an older version, especially after major interface or feature changes.

In these cases, uninstall the specific update It can give you back stability or lost space while you wait for Microsoft to fix the bug or simply leave your system the way you like it.

Is it safe to remove updates in Windows 11?

Is it safe to remove Windows 11 updates?

Remove updates in Windows 11 It is a generally safe operation if done correctly and with knowledge of what is being removed.However, there are important warnings to keep in mind:

  • Security patches are critical: If you remove updates that fix vulnerabilities, you leave the door open to malware and external attacks.
  • Cumulative updates often contain previous fixes.: By removing them, you may lose not only recent improvements, but also old patches.
  • The system may become unstable If you remove necessary patches, causing unexpected errors or abnormal behavior.

It is recommended always create a restore point before removing updates, and only do so if the system is experiencing problems or you have a clear and justified reason. Prevention is always the best option when it comes to the stability of your computer.

  How to control processes and services in Windows with Taskkill and Sc

Methods to remove a specific update in Windows 11

There are multiple ways to uninstall updates in Windows 11, from the graphical interface to advanced tools like CMD o PowerShellHere we explain each method step by step, so you can choose the one that best suits your situation.

Ways to remove an update in Windows 11

1. Uninstall an update from Windows 11 Settings

This method is the simplest and most accessible for most users. Follow these steps:

  • Balance Windows + I to open Settings.
  • Choose Windows Update in the side menu.
  • Click on «Update history».
  • Scroll to Related Settings and select "Uninstall updates".
  • You'll see a list sorted by date with all installed updates.
  • Select the problematic update and press the button "Uninstall".
  • Follow the instructions to complete the process (you may need to restart your computer).

This method is ideal for reversing a recent change that is causing you specific discomfort.

2. Use the classic Control Panel to remove updates

El old Control Panel It is still available in Windows 11 and allows another way to remove specific updates: the inetpub folder.

  • Open Run by pressing Windows + R and writes control.
  • In the Control Panel, choose "Programs and characteristics".
  • In the side menu, click «See installed updates».
  • Find the desired update, right-click and select "Uninstall".
  • Confirm the decision when prompted by the system.

This method is effective for users who are more accustomed to the traditional Windows structure.

3. Remove updates from the Windows Recovery Environment (Windows RE)

If after an update the system does not start or you have serious problems, the Windows Recovery Environment (Windows RE) is your ally: delete Windows Old folder can help you solve these problems.

  • Restart your PC by holding down the key Left shift during the process.
  • Wait for the blue menu called "Choose an option".
  • Choose "Solve problems" > "Advanced Options".
  • Choose "Uninstall updates".
  • Decide if you want to remove the "last quality update" and «last of features».
  • Follow the wizard and, if necessary, enter your password to confirm.

This method allows you to get out of really complicated situations where you can't even log into Windows normally.

4. Delete or clean up downloaded updates with Disk Cleanup

El Disk Cleanup It is a Windows utility that helps you delete temporary files, installation residues, or unnecessary update remnants.

  • Open the Start menu, search "Disk Cleanup" and run it.
  • Select the drive where Windows is installed (usually C:).
  • Click on "Clean system files".
  • Brand "Windows Update Cleanup" and other items you want to remove.
  • Balance "To accept" and wait for the cleaning to complete.
  How to Migrate from HDD to SSD in Windows 11: Complete Step-by-Step Guide

After installing new updates, this tool can help you unlock several gigabytes deleting obsolete versions.

5. Manually empty update file folders

Sometimes updates get stuck or generate temporary files that take up a lot of space. You can manually clean several folders:

a) Folder % Temp%

  • Balance Windows + R, writes % Temp% and hit Enter.
  • Select all files and delete them.

These are temporary system files, safe to delete to recover space.

b) Folder software distribution

  • Open a window Symbol of the system as Administrator (Windows + X > «Command Prompt (Admin)» or «Windows Bus Terminal (Admin)»).
  • Stop services with:
    net stop wuauserv
    net stop bits
  • Navigate to C: \ Windows \ SoftwareDistribution and deletes all your files and folders.
  • Restart the services with:
    net start wuauserv
    net start bits

This folder stores temporary update files. Deleting it may resolve persistent errors. from Windows Update.

c) Folder catroot2

  • Go to C:\Windows\System32\catroot2.
  • Delete the folder (you will need administrator permissions).

With this, Windows will automatically regenerate the folder when needed, helping to troubleshoot pending or failed updates.

d) File pending.xml

  • Accede to C:\Windows\WinSxS.
  • Find “pending.xml” and delete or rename it.

This clears pending tasks that may be blocking new updates.

6. Uninstall updates using CMD (Command Prompt)

For advanced users, the Symbol of the system (CMD) provides full control over uninstalling updates, especially useful if the graphical interface fails or does not load properly.

The main command is wusa, and it works like this:

  • Open CMD as administrator.
  • Run:
    wusa /uninstall /kb:XXXXXXX

Replaces XXXXXXX by the update number (KB) you want to remove. Example:

wusa /uninstall /kb:5015793 /quiet /norestart

Useful options:

  • / quiet: No notifications during uninstallation.
  • / norestart: Prevents automatic reboot after removing the update.
  • /forcerestart: Force reboot after operation.
  • /warnrestart: Displays warning before reboot.

This method gives you maximum precision in removing a specific update, but requires knowing the exact KB code.

7. Remove updates with PowerShell

PowerShell It is another powerful tool, especially useful in corporate environments or if you manage multiple machines on a network.

You can list installed updates with:

Get-Hotfix

Or search for a specific one:

Get-Hotfix -id KB0000000

And to remove a specific update, use:

wusa /uninstall /KB:0000000

Remember to adapt the KB number according to the patch you want to remove. You can complement the command with parameters such as / quiet o / norestart according to your preferences.

8. Pause or cancel automatic updates to avoid future problems

If you have had bad experiences with automatic updates, You can pause or temporarily disable this process to avoid unwanted surprises.: automatic update management can be controlled from several options in Windows 11.

  • From Settings > Windows Update You can pause updates for up to 7 days, as many times as you need.
  • You can stop the update services via services.msc (by searching for “Windows Update” and setting its status to “Stopped”).
  • Use the Group Policy Editor (gpedit.msc) to set specific versions or delay the installation of new patches.
  • manipulate the Registry Editor to set values ​​as TargetReleaseVersionInfo and thus control which version you want to keep.
  • Also exist third party tools to easily disable automatic updates, although it is only recommended if you know what you are doing.
  How to fix an SSD that disappears or appears as RAW after updating to Windows 11

This way, you'll have control over when and what to install, minimizing the risk of incompatibilities or space issues.

What happens if I delete updates by mistake?

Deleting an essential update, especially security patches, can leave you unprotected against threats, as well as reverting important fixes to old bugs.

If you accidentally remove a necessary patch, do not be alarmed: You can retrieve any update by accessing the Microsoft Update Catalog. You just need to search for the update by its KB code and download it again.

Consequences and warnings about removing updates

You shouldn't remove updates lightly.While they can sometimes cause problems, in most cases they provide essential security and performance improvements. Removing a patch can:

  • Exposing your PC to attacks and malware.
  • Cause unexpected failures or abnormal behavior.
  • Break compatibility with some current programs.
  • Undo critical fixes introduced by Microsoft.

If you decide to remove updates, always make a backup or restore point so you can roll back if something goes wrong. And if the reason is to free up space, consider other disk cleanup options first before resorting to deleting potentially important updates.

How to know which update to delete: Checking your history

Before removing anything, it is basic Identify the specific update that is causing you problemsTo do this, always check your history:

  • Opens Configuration > Windows Update > Update history.
  • Check the date and KB number of the latest updates installed.
  • See if your problem arose after a specific installation.
  • In the same history, you can directly access the uninstall menu.

Identifying the responsible patch will save you time and reduce the risk of leaving your system unstable.

Clock returns to the drop-down calendar in Windows 11-0
Related article:
The clock returns to the drop-down calendar in Windows 11: all the details of this long-awaited update