Hello,
Here are a few steps you might consider troubleshooting and resolve the problem:
- Check WSUS Services and IIS:
Ensure that the WSUS service and IIS (Internet Information Services) are running.
Restart these services to see if that resolves the connectivity issue.
- Clear the WSUS Cache:
Sometimes, clearing the WSUS cache can resolve issues. You can do this by executing the following commands in an elevated Command Prompt:
net stop wuauserv
net stop bits
rd /s /q %windir%\SoftwareDistribution
net start bits
net start wuauserv
Please note that the rd /s /q command deletes all files and folders under the specified directory and its subdirectories. Make sure to back up important data before executing these commands.
- Re-index the WSUS Database:
Re-indexing the WSUS database might help if it’s become fragmented. You can use the SQL Server Management Studio for this.
- Reset the WSUS Server:
You can reset WSUS by following these steps:
Open a Command Prompt window as an administrator.
Run the following command: wsusutil reset
Best Regards,
Yanhong Liu
============================================
If the Answer is helpful, please click "Accept Answer" and upvote it.