I have experience this Issue once as well in a Customer Environment. I needed to "reset" the Windows Update Policies on that specific Machine.
For this you can run the following PowerShell Script
# Define the path to the registry key
$registryPath = "HKLM:\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU"
# Check if the registry path exists
if (-not (Test-Path $registryPath)) {
# Create the registry path
New-Item -Path $registryPath -Force | Out-Null
}
# Define the new values for the properties
$settings = @{
"AllowMUUpdateService" = 1
"AUOptions" = 3
"NoAutoUpdate" = 0
"ScheduledInstallDay" = 0
"ScheduledInstallEveryWeek" = 1
"ScheduledInstallTime" = 3
}
# Set the new values for the properties
foreach ($setting in $settings.GetEnumerator()) {
Set-ItemProperty -Path $registryPath -Name $setting.Key -Value $setting.Value
}
I assume you have set the following two Azure Policies:
https://www.azadvertizer.net/azpolicyadvertizer/bfea026e-043f-4ff4-9d1b-bf301ca7ff46.html
https://www.azadvertizer.net/azpolicyadvertizer/bd876905-5b84-4f73-ab2d-2e7a7c4568d9.html
More Details on my Blog Article: