Affected versions: Windows Server 2022

πŸ“– ~1 min read

Table of contents
  1. Symptom & Impact
  2. Quick Checks
  3. Deep Diagnosis
  4. Primary Fix
  5. Verification
  6. Prevention & Hardening

Symptom & Impact

WSUS shows stale client check-in dates after TLS or certificate changes on the update server. Patch compliance reports become unreliable and vulnerable systems are missed. Large update waves fail silently due to scan/upload interruptions.

Quick Checks

Validate server URL policy, client Windows Update service state, and WSUS IIS SSL bindings.

Get-ItemProperty 'HKLM:SoftwarePoliciesMicrosoftWindowsWindowsUpdate'
Get-Service wuauserv
netsh http show sslcert ipport=0.0.0.0:8531

Deep Diagnosis

Inspect WindowsUpdate client logs and WSUS software distribution logs for trust or protocol mismatch indicators.

Get-WindowsUpdateLog -LogPath C:Tempwuclient.log
Get-WinEvent -LogName Application -MaxEvents 100 | Where-Object {$_.Message -match 'WSUS|Windows Update'}
Invoke-WebRequest https://wsus01:8531/selfupdate/wuident.cab -UseBasicParsing

Primary Fix

Correct WSUS URL policies, refresh client identity cookies, and force detection/reporting cycle.

Still having issues? Our IT Solutions & Services team can diagnose and resolve this for you. Get in touch for a free consultation.

usoclient StartScan
wuauclt /resetauthorization /detectnow
wuauclt /reportnow
Restart-Service wuauserv

Verification

Client should appear with current timestamp and latest installed update metadata in WSUS console.

Get-WinEvent -LogName 'Microsoft-Windows-WindowsUpdateClient/Operational' -MaxEvents 50
Get-HotFix | Sort-Object InstalledOn -Descending | Select -First 5

Prevention & Hardening

Pin TLS settings via baseline and test client-server trust after any certificate rollover.

Get-TlsCipherSuite | Select Name -First 20
Get-ChildItem Cert:LocalMachineWebHosting
Test-NetConnection wsus01 -Port 8531

Illustrative mockup for windows-server-2022 β€” terminal_or_powershell
Diagnostics commands in PowerShell β€” Illustrative mockup β€” Progressive Robot
Illustrative mockup for windows-server-2022 β€” event_or_log_viewer
Event log verification for Windows Server 2022 β€” Illustrative mockup β€” Progressive Robot

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.