Page MenuHomeProjets antipode.info

Windows Server Update BUG - 12 janvier 2022
Updated 1,201 Days AgoPublic

From : https://www.bleepingcomputer.com/news/microsoft/new-windows-server-updates-cause-dc-boot-loops-break-hyper-v/

Commands in powershell

Find pending updates

$UpdateSession = New-Object -ComObject Microsoft.Update.Session
$UpdateSearcher = $UpdateSession.CreateupdateSearcher()
$Updates = @($UpdateSearcher.Search("IsHidden=0 and IsInstalled=0").Updates)
$Updates | Select-Object Title

List installed updates

Get-HotFix | Sort-Object InstalledOn -Descending

Remove updates

Windows Server 2012 R2: wusa /uninstall /kb:5009624
Windows Server 2019: wusa /uninstall /kb:5009557
Windows Server 2022: wusa /uninstall /kb:5009555

Last Author
mbh
Last Edited
Jan 14 2022, 11:19 AM