Windows Server Update BUG - 12 janvier 2022
Windows Server Update BUG - 12 janvier 2022
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
Tags
None
Referenced Files
None
Subscribers
None
- Last Author
- mbh
- Last Edited
- Jan 14 2022, 11:19 AM