{"id":10646,"date":"2025-03-03T22:00:48","date_gmt":"2025-03-03T22:00:48","guid":{"rendered":"https:\/\/cheapwindowsvps.com\/blog\/how-to-hide-or-block-a-specific-windows-update-a-step-by-step-guide\/"},"modified":"2025-03-03T22:00:48","modified_gmt":"2025-03-03T22:00:48","slug":"how-to-hide-or-block-a-specific-windows-update-a-step-by-step-guide","status":"publish","type":"post","link":"https:\/\/cheapwindowsvps.com\/blog\/how-to-hide-or-block-a-specific-windows-update-a-step-by-step-guide\/","title":{"rendered":"How to Hide or Block a Specific Windows Update: A Step-by-Step Guide"},"content":{"rendered":"<p>Sometimes, after installing a Windows update, users may face issues such as the operating system, specific programs, or drivers malfunctioning. In such cases, it is necessary to uninstall the troublesome update and prevent its reinstallation. This guide outlines how to temporarily pause updates and block unwanted updates from the Windows Update service.<\/p>\n<h3>Using the Microsoft Show and Hide Updates Tool<\/h3>\n<p>If an unwanted update has already been installed, it can be uninstalled by navigating to <strong>Settings<\/strong> \u2192 <strong>Windows Update<\/strong> \u2192 <strong>View Update History<\/strong> \u2192 <strong>Uninstall updates<\/strong>. Simply click on the update in the list and select <strong>Uninstall<\/strong>.<\/p>\n<p>For users who prefer using the command line, the PowerShell command can be employed to remove the update sorted by installation date:<\/p>\n<pre><code>Get-HotFix | Sort-Object -Property InstalledOn -Descending<\/code><\/pre>\n<p>Identify the update number (KBxxxxx) and uninstall it using:<\/p>\n<pre><code>wusa \/uninstall \/kb:5048161<\/code><\/pre>\n<p>However, Windows Update may automatically try to reinstall the update you\u2019ve just removed, depending on the settings overridden by the <a target=\"_blank\" rel=\"nofollow noopener\" href=\"https:\/\/woshub.com\/group-policy-settings-to-deploy-updates-using-wsus\/\">Windows Update Group Policy<\/a>.<\/p>\n<p>To completely block a specific update, utilize the Microsoft \u2018Show or Hide Updates\u2019 tool (<code>wushowhide.diagcab<\/code>):<\/p>\n<ol>\n<li>Download the <a target=\"_blank\" rel=\"nofollow noopener\" href=\"https:\/\/download.microsoft.com\/download\/f\/2\/2\/f22d5fdb-59cd-4275-8c95-1be17bf70b21\/wushowhide.diagcab\">Show or hide utility<\/a> from the Microsoft website.<\/li>\n<li>Run <strong>wushowhide.diagcab<\/strong>.<\/li>\n<li>Select <strong>Hide updates<\/strong>.<\/li>\n<li>Choose the update(s) you wish to hide.<\/li>\n<\/ol>\n<p>After hiding updates, they will not reappear for installation unless you unhide them using the same tool.<\/p>\n<p>If you have a <a target=\"_blank\" rel=\"nofollow noopener\" href=\"https:\/\/woshub.com\/installing-configuring-wsus-on-windows-server-2012\/\">WSUS Update Server<\/a> installed, you can leverage the <strong>Approved for Removal<\/strong> option to block and even automatically uninstall certain updates across connected systems. Check the article <a target=\"_blank\" rel=\"nofollow noopener\" href=\"https:\/\/woshub.com\/wsus-update-approvals\/\">Approving Updates on WSUS<\/a> for further instructions.<\/p>\n<h3>Temporarily Pause Updates in Windows<\/h3>\n<p>Windows 10 and 11 permit users to pause updates for up to 35 days, a useful option when known bugs are identified in released updates.<\/p>\n<p>To pause updates for 7 days, choose the <strong>Pause updates for 7 more days<\/strong> option in <strong>Settings<\/strong> \u2192 <strong>Windows Updates<\/strong>. This function can be utilized five times, extending the total pause period to 35 days.<\/p>\n<p>To check when the update pauses will expire, the following PowerShell command can be utilized:<\/p>\n<pre><code>Get-ItemProperty -Path 'HKLM:SOFTWAREMicrosoftWindowsUpdateUXSettings'| Select-Object PauseUpdatesExpiryTime<\/code><\/pre>\n<p>To set the maximum pause duration via a PowerShell script:<\/p>\n<pre><code class=\"language-powershell\">$pause = (Get-Date).AddDays(35)$pause = $pause.ToUniversalTime().ToString(&quot;yyyy-MM-ddTHH:mm:ssZ&quot;)Set-ItemProperty -Path 'HKLM:SOFTWAREMicrosoftWindowsUpdateUXSettings' -Name 'PauseUpdatesExpiryTime' -Value $pause<\/code><\/pre>\n<h3>Block Installation of Specific Windows Updates Using PowerShell<\/h3>\n<p>To effectively block a specific update, the PowerShell cmdlets available through the <a target=\"_blank\" rel=\"nofollow noopener\" href=\"https:\/\/woshub.com\/pswindowsupdate-module\/\">PSWindowsUpdate<\/a> module should be utilized.<\/p>\n<p>If not already installed, execute the following command to install the module:<\/p>\n<pre><code>Install-Module -Name PSWindowsUpdate<\/code><\/pre>\n<p>After restarting PowerShell, allow the module cmdlets to execute in the current session:<\/p>\n<pre><code>Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Process<\/code><\/pre>\n<p>To see available updates for installation, use:<\/p>\n<pre><code>Get-WindowsUpdate<\/code><\/pre>\n<p>To block a specific update, run:<\/p>\n<pre><code>Hide-WindowsUpdate -KBArticleID KB5048652 -Verbose<\/code><\/pre>\n<p>Hidden updates won&#8217;t appear in the list of available updates. To view hidden updates, execute:<\/p>\n<pre><code>Get-WindowsUpdate -IsHidden<\/code><\/pre>\n<p>To unhide updates and enable their installation, run:<\/p>\n<pre><code>Show-WindowsUpdate -KBArticleID KB5048652<\/code><\/pre>\n<p>Users often seek to block particular driver updates as well. If <code>Get-WindowsUpdate<\/code> shows that driver updates are missing a KB number, the driver can be blocked based on its ID:<\/p>\n<pre><code class=\"language-powershell\">$Updates = Get-WindowsUpdate -WindowsUpdate -UpdateType Driver$Updates | Select Title, Description -Expand IdentityHide-WindowsUpdate -UpdateID &quot;3f6ba9a7-b031-4990-808f-69a9e1ef6a91&quot;<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Sometimes, after installing a Windows update, users may face issues such as the operating system, specific programs, or drivers malfunctioning. In such cases, it is necessary to uninstall the troublesome update and prevent its reinstallation. This guide outlines how to temporarily pause updates and block unwanted updates from the Windows Update service. Using the Microsoft [&hellip;]<\/p>\n","protected":false},"author":0,"featured_media":10647,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[117,99,108],"tags":[],"class_list":["post-10646","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-powershell","category-windows-11","category-windows-server-2022"],"_links":{"self":[{"href":"https:\/\/cheapwindowsvps.com\/blog\/wp-json\/wp\/v2\/posts\/10646","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/cheapwindowsvps.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/cheapwindowsvps.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"replies":[{"embeddable":true,"href":"https:\/\/cheapwindowsvps.com\/blog\/wp-json\/wp\/v2\/comments?post=10646"}],"version-history":[{"count":0,"href":"https:\/\/cheapwindowsvps.com\/blog\/wp-json\/wp\/v2\/posts\/10646\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/cheapwindowsvps.com\/blog\/wp-json\/wp\/v2\/media\/10647"}],"wp:attachment":[{"href":"https:\/\/cheapwindowsvps.com\/blog\/wp-json\/wp\/v2\/media?parent=10646"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/cheapwindowsvps.com\/blog\/wp-json\/wp\/v2\/categories?post=10646"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/cheapwindowsvps.com\/blog\/wp-json\/wp\/v2\/tags?post=10646"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}