How to show or hide updates on Windows 11

You can block specific automatic updates on Windows 11 using the Troubleshooter tool and PowerShell, and here's how.

Windows 11 show or hide updates
Windows 11 show or hide updates

Windows 11 downloads and installs updates automatically for many good reasons. For example, to improve performance and protect your computer and files from malware and hackers. However, the problem is that sometimes security and maintenance updates may release with compatibility issues and bugs that break features or affect performance.

Although updates are critical to the system, and it’s not a wise idea to disable the feature, you have at least two ways to block specific updates from downloading automatically on Windows 11 using the “Show or hide updates” tool or the PowerShell “PSWindosUpdate” module.

In this guide, you will learn two different ways to show or hide cumulative updates on Windows 11.

Hide updates on Windows 11 from Troubleshooter

To hide updates on Windows 11, use these steps:

  1. Open the Microsoft Download Center page.

  2. Save the wushowhide.diagcab file on the computer.

  3. Double-click the “.diagcab” file to launch the “Show or hide updates troubleshooter” tool.

  4. Click the Next button.

  5. Click the Hide updates option.

    Windows 11 hide updates

  6. Select the Windows 11 update to hide from the system.

    Choose update to hide

  7. Click the Next button.

  8. Click the Close button.

Once you complete the steps, the update will disappear from Windows Update. However, when a newer version becomes available, Windows will automatically download and install it.

If the update is already installed, you first need to remove it and then block it. The option to uninstall updates is available on SettingsWindows Updates > Update history > Uninstall updates

Show updates on Windows 11 from Troubleshooter

To make available a previously blocked update, use these steps:

  1. Open the Microsoft Download Center page.

  2. Save the wushowhide.diagcab file on the computer.

  3. Double-click the “.diagcab” file to launch the “Show or hide updates troubleshooter” tool.

  4. Click the Next button.

  5. Click the “Show hidden updates” option.

    Windows 11 show updates

  6. Select the update to make it available on Windows 11.

    Choose update to show

  7. Click the Next button.

  8. Click the Close button.

After you complete the steps, the package will once again be available on Windows 10.

Hide updates on Windows 11 from PowerShell

To hide an update on Windows 11 using PowerShell, use these steps:

  1. Open Start.

  2. Search for PowerShell, right-click the top result, and select the Run as administrator option.

  3. Type the following command to install the PowerShell module to update Windows 11 and press Enter:

    Install-Module PSWindowsUpdate

    Install PSWindowsUpdate

  4. Type “A” to accept and install the module and press Enter.

  5. Type the following command to allow the module to run in PowerShell and press Enter:

    Set-ExecutionPolicy RemoteSigned
  6. Type the following command to check for Windows 11 updates and press Enter:

    Get-WindowsUpdate
  7. Type the following command to select and block the update with PowerShell and press Enter:

    Hide-WindowsUpdate -KBArticleID KBNUMBER

    In the command, make sure to replace KBNUMBER with the update number you want to block. This example blocks the KB5009469 update:

    Hide-WindowsUpdate -KBArticleID KB5009469

    PowerShell hide updates

  8. Type “A” to accept and install the module and press Enter.

  9. (Optional) Type the following command to select and block update when the KB number is not available and press Enter:

    Hide-WindowsUpdate -Title "UPDATE-TITLE"

    In the command, replace UPDATE-TITLE with the update number to skip. You only need a part of the title to make it a match. This example blocks the “2021-05 Cumulative Update” package:

    Hide-WindowsUpdate -Title "2022-01 Cumulative Update"
  10. Type A to accept and install the module and press Enter.

Once you complete the steps, the PowerShell tool will block the update, preventing the system from downloading and installing it, and the status will appear with an H indicating that it is now hidden.

Show updates on Windows 11 from PowerShell

To show a Windows update with PowerShell commands, use these steps:

  1. Open Start.

  2. Search for PowerShell, right-click the top result, and select the Run as administrator option.

  3. Type the following command to install the update module and press Enter (if applicable):

    Install-Module PSWindowsUpdate
  4. Type “A” to accept and install the module and press Enter.

  5. Type the following command to check for Windows 11 updates with PowerShell and press Enter:

    Get-WindowsUpdate
  6. Type the following command to select and allow the update with PowerShell and press Enter:

    Show-WindowsUpdate -KBArticleID KBNUMBER

    In the command, replace KBNUMBER with the update number you want to unhide. This example blocks the KB5009469 update:

    Show-WindowsUpdate -KBArticleID KB5009469 

    PowerShell show hidden updates

  7. Type “A” to accept and install the module and press Enter.

  8. (Optional) Type the following command to select and allow the update when the KB number is not available and press Enter:

    Show-WindowsUpdate -Title "UPDATE-TITLE"

    In the command, replace UPDATE-TITLE with the update number you want to install. You only need part of the title to make a match. This example blocks the “2021-05 Cumulative Update” package:

    Show-WindowsUpdate -Title "2022-01 Cumulative Update"
  9. Type “A” to accept and install the module and press Enter.

After you complete the steps, the update will become available again on Windows 11.

About the author

Mauro Huculak is a Windows How-To Expert who started Pureinfotech in 2010 as an independent online publication. He has also been a Windows Central contributor for nearly a decade. Mauro has over 14 years of experience writing comprehensive guides and creating professional videos about Windows and software, including Android and Linux. Before becoming a technology writer, he was an IT administrator for seven years. In total, Mauro has over 20 years of combined experience in technology. Throughout his career, he achieved different professional certifications from Microsoft (MSCA), Cisco (CCNP), VMware (VCP), and CompTIA (A+ and Network+), and he has been recognized as a Microsoft MVP for many years. You can follow him on X (Twitter), YouTube, LinkedIn and About.me. Email him at [email protected].