Forum Discussion
RahamimL
Apr 19, 2021Iron Contributor
Denying problematic updates
Hi everyone, My computer is co managed with SCCM and it gets updates from an Intune update ring. Yesterday the computer had a BSOD because of update 5000808 which is caused when attempting to pr...
Apr 19, 2021
Hi,
Just another idea....
Maybe instead of pausing the update ring... maybe trying to exclude/hide the update itself with a PowerShell script?
Install-Module -Name PSWindowsUpdate -force -confirm:$False
Hide-WindowsUpdate -KBArticleID "kb" -Confirm:$false
Just another idea....
Maybe instead of pausing the update ring... maybe trying to exclude/hide the update itself with a PowerShell script?
Install-Module -Name PSWindowsUpdate -force -confirm:$False
Hide-WindowsUpdate -KBArticleID "kb" -Confirm:$false
RahamimL
Apr 20, 2021Iron Contributor
Thanks for the idea, did you test this? Another problem I have is, I need to distribute the module to all computers. I would rather avoid that.