Reset Windows Update GPO Settings

by | Last updated 2022.10.29 | Published on 2021.06.24 | Guides, WSUS

If you want to Reset the Windows Update GPO Settings because you are moving away from WSUS, or you need to for troubleshooting purposes (sometimes corruption in the registry permissions prevent expected changes from happening), the easiest way to do this is to remove the entire Registry Key:
HKLM:\Software\Policies\Microsoft\Windows\WindowsUpdate
Doing this will force Windows to use the defaults and re-build this key using group policy (or local group policy).

From an Administrative PowerShell Prompt on the affected client

Remove-Item 'HKLM:\Software\Policies\Microsoft\Windows\WindowsUpdate' -Force -Recurse
gpupdate /force
Restart-Service -name "Windows Update"

One thing to note is by unlinking an existing WSUS GPO, or just deleting it, or just setting the values back to “Not Configured” is NOT going to remove the entries from the registry. These registry keys don’t change and don’t remove by just stopping the policy from applying. You COULD set the WSUS Server Location GPO to Disabled, wait for GPO propagation and then set it to “Not Configured”, but with all of the systems that are not receiving GPO updates at the time you change it (remote users, offline systems, etc), it’s entirely possible that you’ll have some system that will only apply the latest state of ‘Not Configured’ leaving them with the registry entries configuring the system to go to WSUS.

How to Prepare for On-Prem WSUS UUP Updates

How to Prepare for On-Prem WSUS UUP Updates

Quality updates are coming on March 28 for on-premises Windows 11, version 22H2 devices. The updates are coming via the Unified Update Platform (UUP) which interoperates with WSUS and Microsoft Configuration Manager. UUP quality updates are cumulative, including all...

Restoring Windows Server Update Services From Backups

Restoring Windows Server Update Services From Backups

You probably already know that backing up your Windows Server Updates Services is crucial. You want to back up because restores are faster than rebuilding WSUS. Although it’s not difficult to rebuild, it takes valuable time we know you don’t have. Your WSUS...

Backing Up Windows Server Update Services

Backing Up Windows Server Update Services

You probably already know that backing up your Windows Server Update Services is crucial. You want to back up because restores are faster than rebuilding WSUS. Although it’s not difficult to rebuild, it takes valuable time we know you don’t have. Your WSUS...