Hi Charles,
Try opening Task Manager, Services.
Right click Running and click Stop.
Unpause your Update and then Reboot
your PC and hopefully it should find the
newer update.
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I exhausted troubleshooting the network side until I determined that this update was causing the problem. I have paused updates for several weeks now, but every time I turn updates back on it reinstalls. I can see where I fix was provided for Dell users, but nothing about HP. Right now I have to keep updates paused but can't do it forever and could use some help.
Hi Charles,
Try opening Task Manager, Services.
Right click Running and click Stop.
Unpause your Update and then Reboot
your PC and hopefully it should find the
newer update.
KB5101650 immediately reinstalled, but I was able to hold off the restart and found KB5121767 under optional updates and am installing that now. Thank you. Hopefully this will work.
Both updates installed successfully. Internet is technically up, but Firefox tabs are getting 'looking up' and Chrome tabs are just spinning. Sometimes things will start moving, then back to that. I'm going to have to back this out and turn off updates. It sounds like KB5121767 is specifically for Dell customers and this is an HP.
SInce this update i had my HP desktop (OMEN 40L GT21-2010nl) randomly power down.
you can uninstall this update from terminal (just to be sure i uninstalled KB5121767 this too before)
before go in windows update and put on pause the update (so will not start the update just after you remove it)
then from terminal write this command
wusa /uninstall /kb:5101650
after restarting do this from preventing the update to be installed again
Here are the steps to use PowerShell to block a specific Windows update:
Open PowerShell and install the module using this command:
Install-Module PSWindowsUpdate -Force
Next, use this command to list pending updates and confirm the KB number:
Get-WindowsUpdate -MicrosoftUpdate
Subsequently, use this code to hide the specific KB (replace KB5000000 with your target) so it will not install:
Get-WindowsUpdate -KBArticleID KB5101650 | Hide-WindowsUpdate -Confirm:$false
To view hidden updates, use this:
Get-WindowsUpdate -IsHidden
To unhide, use this command:
Hide-WindowsUpdate -KBArticleID KB5101650 -MicrosoftUpdate -Hide:$false -Confirm:$false