我们已经将几台服务器从 Windows Server 2012R2 升级到 Windows Server 2022,没有出现任何问题。但是,我们刚刚升级了一台,它无法连接到 Windows 更新。
我们不使用 WSUS,只使用直接来自 Microsoft 的常规 Windows 更新。
我们已经完成了所有常见的故障排除步骤:
- https://learn.microsoft.com/en-us/troubleshoot/windows-client/deployment/additional-resources-for-windows-update#reset-windows-update-components-manually
- DISM /online /清理图像/恢复健康
- 证监会/scannow
- Windows 更新疑难解答
并采取了其他步骤:
- https://www.tenforums.com/tutorials/24742-reset-windows-update-windows-10-a.html
- https://www.elevenforum.com/t/reset-windows-update-in-windows-11.3808/
我开始深入研究这里的一个 ETL 文件:C:\Windows\Logs\WindowsUpdate,似乎找不到 Windows 更新服务:
如果我通过 Powershell 检查,它似乎显示相同的内容——这是来自非工作服务器的输出:
(New-Object -ComObject 'Microsoft.Update.ServiceManager').Services
Name : Windows Update
ContentValidationCert : {}
ExpirationDate : 6/18/5254 9:21:00 PM
IsManaged : False
IsRegisteredWithAU : True
IssueDate : 1/1/2003 12:00:00 AM
OffersWindowsUpdates : True
RedirectUrls : System.__ComObject
ServiceID : 9482f4b4-e343-43b6-b170-9a65bc822c77
IsScanPackageService : False
CanRegisterWithAU : True
ServiceUrl :
SetupPrefix :
IsDefaultAUService : True
以下是升级后服务器的输出:
(New-Object -ComObject 'Microsoft.Update.ServiceManager').Services
Name : DCat Flighting Prod
ContentValidationCert : {}
ExpirationDate :
IsManaged : False
IsRegisteredWithAU : False
IssueDate : 1/1/1601 12:00:00 AM
OffersWindowsUpdates : True
RedirectUrls : System.__ComObject
ServiceID : 8b24b027-1dee-babb-9a95-3517dfb9c552
IsScanPackageService : False
CanRegisterWithAU : False
ServiceUrl : https://fe3cr.delivery.mp.microsoft.com/
SetupPrefix : wu
IsDefaultAUService : False
Name : Windows Store (DCat Prod)
ContentValidationCert : {}
ExpirationDate :
IsManaged : False
IsRegisteredWithAU : False
IssueDate : 1/1/1601 12:00:00 AM
OffersWindowsUpdates : False
RedirectUrls : System.__ComObject
ServiceID : 855e8a7c-ecb4-4ca3-b045-1dfa50104289
IsScanPackageService : False
CanRegisterWithAU : True
ServiceUrl : https://fe3cr.delivery.mp.microsoft.com/
SetupPrefix : ws
IsDefaultAUService : False
Name : Windows Update
ContentValidationCert : {}
ExpirationDate :
IsManaged : False
IsRegisteredWithAU : True
IssueDate : 1/1/1601 12:00:00 AM
OffersWindowsUpdates : True
RedirectUrls : System.__ComObject
ServiceID : 9482f4b4-e343-43b6-b170-9a65bc822c77
IsScanPackageService : False
CanRegisterWithAU : True
ServiceUrl : https://fe2cr.update.microsoft.com/v6/
SetupPrefix : wu
IsDefaultAUService : True
有什么方法可以修复丢失/损坏的注册服务和 ServiceUrl?
谢谢你!