Forum Discussion
TomKimg
Nov 10, 2025Iron Contributor
How to stop this Windows update?
I need to stop this KB5067036 preview. Don't want it!! Tried the Group policy OOBE tweak - changing it to to "2" for notify before downloading updates. Doesn't work. Deprecated now? Checked the...
Emre_Civelekoglu
Nov 10, 2025Copper Contributor
Hi TomKimg,
Have you tried doing it with PowerShell?
You can hide specific updates like KB5067036 so Windows stops offering them, without blocking everything else.
Example:
Install-Module PSWindowsUpdate -Scope CurrentUser -Force
Get-WindowsUpdate
Hide-WindowsUpdate -KBArticleID KB5067036 -Confirm:$false
If you ever change your mind, unhide it with:
Show-WindowsUpdate -KBArticleID KB5067036
Cheers