π ~1 min read
Table of contents
Symptom & Impact
The Windows Update service on Windows Server 2019 hangs in a Scanning state, never returning an applicable update list. The host falls behind on security patches, WSUS reporting shows the client as inactive, and scheduled compliance reports flag the node.
Environment & Reproduction
Reproducible on hosts that have not patched recently or that point to a WSUS server with a large catalogue. Inspect WindowsUpdate.log via Get-WindowsUpdateLog.
Get-Service -Name wuauserv
Get-WinEvent -LogName System -MaxEvents 40
Get-HotFix | Sort-Object InstalledOn -Descending | Select-Object -First 10
Root Cause Analysis
Causes include corruption in the SoftwareDistribution datastore, broken WSUS group membership, expired client certificates, or a stuck wuauserv worker thread.
Quick Triage
Capture the scan duration and the most recent WindowsUpdate.log tail before resetting any state.
sc.exe query wuauserv
Get-Service -Name wuauserv | Select-Object Status,StartType
Get-EventLog -LogName System -Newest 30 | Where-Object {$_.Source -match 'wuauserv'}
Step-by-Step Diagnosis
Generate and read the WindowsUpdate.log and confirm WSUS endpoint reachability from the host.
Get-WinEvent -LogName System -MaxEvents 50 | Where-Object {$_.ProviderName -match 'wuauserv'} | Select TimeCreated,Id,LevelDisplayName,Message
sc.exe qfailure wuauserv
sfc /verifyonly

Solution β Primary Fix
Stop wuauserv, rename SoftwareDistribution, restart the service, and let it rebuild then rerun a fresh scan.
Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.
Restart-Service -Name wuauserv -Force
Get-Service -Name wuauserv | Select-Object Status,StartType
Get-WinEvent -LogName System -MaxEvents 20 | Where-Object {$_.ProviderName -match 'wuauserv'}

Solution β Alternative Approaches
If WSUS scan keeps failing, point the client temporarily at Microsoft Update to isolate WSUS versus client issues.
sc.exe config wuauserv start= auto
sc.exe failure wuauserv reset= 86400 actions= restart/60000/restart/60000/run/1000
Restart-Service -Name wuauserv -Force
Verification & Acceptance Criteria
Scan completes, applicable updates list is returned, and WindowsUpdate.log shows no fresh persistent errors.
Get-Service -Name wuauserv
Get-WinEvent -LogName System -MaxEvents 25 | Where-Object {$_.ProviderName -match 'wuauserv' -and $_.LevelDisplayName -eq 'Error'}
Test-NetConnection -ComputerName localhost -Port
Rollback Plan
Restore the original SoftwareDistribution folder and previous WSUS group membership if rebuild caused issues.
Get-HotFix | Sort-Object InstalledOn -Descending | Select-Object -First 5
wbadmin get versions
# Restore previous configuration export if available
Prevention & Hardening
Keep WSUS clients on a healthy update ring and prune expired or superseded updates from the catalogue.
Get-Service -Name wuauserv | Export-Clixml C:/Temp/wuauserv-baseline.xml
Get-WinEvent -LogName System -MaxEvents 50 > C:/Temp/wuauserv-events.txt
Get-ScheduledTask | Where-Object {$_.TaskName -match 'wuauserv'}
Related Errors & Cross-Refs
Often correlates with events 20, 363, and WSUS sync error 0x80244010.
Related tutorial: View the step-by-step tutorial for Windows Server 2019.
View all Windows Server 2019 tutorials on the Tutorials Hub β
Browse all common problems & solutions on the Tutorials Hub.
References & Further Reading
Microsoft Learn documentation for Windows Update troubleshooting and WSUS client diagnostics on Windows Server 2019.
Need Expert Help?
If you cannot resolve this yourself, our team offers hands-on Server Management, Managed IT Services, and flexible Support Plans. Contact us today β we respond within one business day.