Skip to content

Hide Windows update using powershell

In a Admin powershell:

sh
Install-Module -Name PSWindowsUpdate
Set-ExecutionPolicy -ExecutionPolicy RemoteSigned -Scope Process
Get-WindowsUpdate
Hide-WindowsUpdate -KBArticleID KB5077181 -Verbose

Check if the update you want to remove, doesn't appear calling Get-WindowsUpdate. They should only be display using Get-WindowsUpdate -IsHidden

sh
Get-WindowsUpdate
Get-WindowsUpdate -IsHidden

References