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 Windows \WinsXs folder for pending XML's. None.
Set wifi to metered connection. Well, that stopped the other 2 downloads anyway!
Want to ditch JUST this KB, not wipe the entire update history, so don't suggest that.
1 Reply
- Emre_CivelekogluCopper 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