Uninstall an update in Windows 11

KEY POINTS

  • To uninstall updates in Windows 11, open Start Menu > Settings > Windows Update > Update history. Settings, select “Uninstall”, and click “Uninstall” to remove the problematic patch.
  • It is also possible to manually remove updates in Windows 11 using Command Prompt and other terminal options, such as PowerShell.
  • To uninstall updates in Windows 11 manually using Command Prompt, you just have to type wusa /uninstall /kb:KBNUMBER and replace the KB number with the actual package number.

Windows Updates are essential for pushing new features to the system, fixing known errors, and installing security updates. However, if Windows Updates were perfect in fixing all problems, Windows systems would be perfect by now (which is far from true).

At times, Windows Updates cause new problems in the system. In this case, you might want to uninstall the Windows Updates. After uninstalling the update, you can wait for Microsoft to fix issues with the current update and then uninstall the revised update later.

A troublesome Windows Update can cause serious problems to your computer, including Blue Screen of Death errors, crashes, dysfunctional drivers, etc.

However, every update pushes security updates to your computer. If you uninstall an update, you will also uninstall the latest security update.

Uninstall Windows Updates through Windows Settings in Windows 11

To uninstall Windows Updates through Windows Settings, use these steps:

  1. Right-click on the Start button.
  2. Select Settings from the menu.
  3. Go to the Windows Update tab in the left pane.
  4. In the right pane, select Update History.
    Uninstall updates in Windows 11 through Settings
  5. Scroll down and click on Uninstall updates.
  6. Click on Uninstall corresponding to the latest update, and then click on Uninstall again to confirm it.

Uninstall Windows Updates through Command Prompt in Windows 11

To uninstall Windows Updates through Command Prompt in Windows 11, use these steps:

  1. Search for Command Prompt in the Windows Search bar.
  2. Click on Run as administrator in the right pane to open the elevated Command Prompt window.
  3. In the elevated Command Prompt window, enter the following command:
    wmic qfe list brief /format:table
  4. This will display the list of the latest Windows Updates with their appropriate KB number.
  5. Note the latest KB number.
    Uninstall updates through Command Prompt
  6. Enter the following command in the elevated Command Prompt window:
    wusa /uninstall /kb:KBNUMBER
  7. For example, if the latest KB number is KB5029921, then the command will become:
    wusa /uninstall /kb: 5029921
  8. You can select Yes for confirmation, and Windows will uninstall the update.

As you can see, every procedure in Windows can be executed through commands in the Command Prompt window.

If you cannot uninstall the latest update through Windows Settings, the Command Prompt method will be very helpful for you.

Uninstall Windows Updates through Windows PowerShell in Windows 11

To uninstall Windows Updates through Windows PowerShell in Windows 11, use these steps:

  1. Search for PowerShell in the Windows Search bar.
  2. Click on Run as administrator corresponding to the app in the right pane to open the elevated PowerShell window.
  3. In the elevated PowerShell window, type the following command and hit Enter to execute it:
    Install-Module PSWindowsUpdate
  4. Type A to accept the command and hit Enter.
  5. This command will install the PowerShell module, a setting required to update Windows.
  6. Enter the following command:
    Get-WUHistory | Select-Object -First 4
  7. This command will display the latest 4 Windows Updates.
  8. After this, note the KB number of the latest update.
    Uninstall Update through Windows PowerShell
  9. Enter the following command to install the update:
    Remove-WindowsUpdate -KBArticleID KBNUMBER
  10. For example, in my case, the KB number of the latest update is KB5029921. Thus, the command will become as follows:
    Remove-WindowsUpdate -KBArticleID KB5029921
  11. Type A to accept the command and hit Enter.

Uninstall Windows Updates through the DISM tool in Windows 11

To uninstall Windows Updates in Windows 11 using the DISM tool, use these steps:

  1. Search for the Command prompt in the elevated Command Prompt window.
  2. Type the following command in the elevated Command Prompt window and hit Enter to generate a copy of the latest Windows Update packages on the clipboard:
    dism /online /get-packages | clip
  3. Open Notepad and paste the contents from the clipboard there.
  4. These contents will list the kind of updates, their date, and the Package Identity.
    Uninstall Updates through DISM
  5. The command to remove a Windows Update package is as follows:
    dism /Online /Remove-Package /PackageName:[Package Identity]
  6. In my case, the command will be the following:
    dism /Online /Remove-Package /PackageName:Microsoft-Windows-Hello-Face-Package~31bf3856ad364e35~amd64~~10.0.22621.2283
  7. Enter it in the elevated Command Prompt window.

Blocking installed uninstalled updates to prevent them from reinstalling

Once you have uninstalled the updates, you can block them so they aren’t installed automatically. You can install the updates manually.

To block the uninstalled updates, use these steps:

  1. Right-click on the Start button and go to Settings >> Windows Updates.
  2. In the right pane, you will notice the option to Pause updates.
    Pause updates
  3. Click on Pause for 1 week.

As always, removing or blocking Windows Updates is not recommended, especially if the updates were released with security fixes.

About The Author

Karan Khanna

Karan Khanna is a journalist with Windows Latest. Since 2013, he's collaborated with prominent media outlets like TheWindowsClub and HuffPost. Beyond journalism, Karan also stands out as a seasoned IT consultant. This unique blend of journalism and IT expertise allows him to offer a distinctive perspective, both in the articles he writes at Windows Latest and in the IT solutions he provides.