Hello
Thank you for posting in Q&A forum.
Here are a few steps you can take to troubleshoot:
- Check WSUS Configuration:
• Ensure that the WSUS server is properly configured and that the necessary updates are approved for the Windows Server 2019 group.
- Reset Windows Update Components:
• On the affected servers, open Command Prompt as an administrator and run the following commands:
net stop wuauserv
net stop cryptSvc
net stop bits
net stop msiserver
ren C:\Windows\SoftwareDistribution SoftwareDistribution.old
ren C:\Windows\System32\catroot2 catroot2.old
net start wuauserv
net start cryptSvc
net start bits
net start msiserver
• This will reset the Windows Update components.
- Check for Duplicate WSUS Client IDs:
• Sometimes, duplicate WSUS client IDs can cause issues. Run the following script on the affected servers to reset the WSUS client ID:
net stop wuauserv
reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v AccountDomainSid /f
reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v PingID /f
reg delete "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v SusClientId /f
net start wuauserv
wuauclt /resetauthorization /detectnow
- Review WSUS Logs for more details:
• Check the WSUS logs on both the server and the clients for any errors or warnings that might indicate the cause of the issue. Logs can be found in the following locations:
• WSUS Server: C:\Program Files\Update Services\LogFiles\SoftwareDistribution.log
• Client: C:\Windows\WindowsUpdate.log
Reference:
Win 2019 not detecting updates from WSUS - Microsoft Q&A
I hope the information above is helpful.
If you have any questions or concerns, please feel free to let us know.
Best Regards,
Daisy Zhou
============================================
If the Answer is helpful, please click "Accept Answer" and upvote it.