Windows Updates können Störungen verursachen und weitere Updates blockieren, eine Deaktivierung und spätere Installation ist dann sinnvoll.
Mit den Windows Updates kann es in Einzelfällen zu Störungen kommen, welche durch die Funktionsweise des Windows Updatemechanismus dazu führen können, dass die Installation jeglicher weiteren Windows-Updates ebenfalls geblockt wird.
Um dieses Problem zu beheben sollte das Update daher deaktiviert werden, bis die Ursache vom Hersteller behoben wurde.
Dazu gibt es zwei Möglichkeiten:
Variante A: Deaktivierung per Microsoft-Tool
Microsoft stellt ein Werkzeug namens "wushowhide" bereit, mit dem gezielte Updates abgeschaltet werden können. Dieses können Sie hier herunterladen:
download.microsoft.com/download/f/2/2/f22d5fdb-59cd-4275-8c95-1be17bf70b21/wushowhide.diagcab
Um das Problem zu beheben starten Sie einfach das Tool und deaktivieren Sie in diesem das Update mit entsprechender Bezeichnung KB<Update-Nummer> (beispielsweise KB5012170).
Variante B: Deaktivierung des Updates per PowerShell
Wenn Sie das Problem per PowerShell-Kommando beheben möchten, so ist auch dies möglich. Standardmäßig erlaubt die PowerShell allerdings keine Verwaltung von Windows Updates, daher muss hier zunächst das Windows Update Tool heruntergeladen werden.
Dies ist mit folgendem Befehl möglich:
Install-Module -Name PSWindowsUpdate
Anschließend ist eine Verwaltung der Updates über die Powershell möglich. Offene Updates können Sie sich über folgenden Befehl anzeigen lassen:
Get-WUList
Unser problematisches Update können Sie dann mit folgendem Befehl deaktivieren:
Hide-WindowsUpdate -KBArticleID KB<Update-Nummer>
Beispielsweise:
Hide-WindowsUpdate -KBArticleID KB5012170
Windows updates can cause issues and block further updates, in which case it is advisable to deactivate them and install them later.
In individual cases, Windows updates can cause malfunctions which, due to the way the Windows update mechanism works, can lead to the installation of any further Windows updates also being blocked.
To resolve this problem, the update should therefore be deactivated until the cause has been resolved by the manufacturer.
There are two ways to do this:
Variant A: Deactivation via Microsoft tool
Microsoft provides a tool called "wushowhide" that can be used to disable targeted updates. You can download it here:
download.microsoft.com/download/f/2/2/f22d5fdb-59cd-4275-8c95-1be17bf70b21/wushowhide.diagcab
To fix the problem just run the tool and in it disable the update KB<update-number> (e.g. KB5012170).
Variant B: Deactivating the update via PowerShell
If you want to fix the problem via PowerShell command, this is also possible. By default, however, PowerShell does not allow the management of Windows updates, so here you must first download the Windows Update Tool.
This is possible with the following command:
Install-Module -Name PSWindowsUpdate
Afterwards, it is possible to manage the updates via the Powershell. Open updates can be displayed with the following command:
Get-WUList
You can then disable our problematic update with the following command:
Hide-WindowsUpdate -KBArticleID KB<update-number>
For example:
Hide-WindowsUpdate -KBArticleID KB5012170