使用 Windows Server Update Services 更新 Windows 10

使用 Windows Server Update Services 更新 Windows 10

我的基础架构中的 Windows 10 客户端不会通过网络中的本地 Windows Server 更新服务 (WSUS) 进行更新。

我为 Windows 10 客户端创建了一个组策略,该策略将 Windows 更新配置为使用 WSUS 服务器。如果在目标 Windows 10 计算机上运行 rsop.msc,则会出现以下结果:

Configure Automatic Updates
    4 - Auto download and schedule the install
    0 - Every day
    Scheduled install time: 03:00
Specify intranet Microsoft update service location
    Set the intranet update service for detecting updates: http:local-server:8530
    Set the intranet statistics server: http:local-server:8530
Check for updates at the following
    interval (hours): 22

WSUS 服务器在 Windows Server 2012 R2 上运行,并已进行更新以激活 Windows 10 更新:Windows8.1-KB3095113-x64.msu

服务器端似乎一切正常,客户端只需安装更新:

wsus 客户端概述

但如果我查看客户端事件日志,我会看到以下内容:

0 updates were found

事件日志

看起来客户端正在直接连接到微软 Windows 网络,但是正在向 WSUS 服务器报告一些事情。

我怎样才能解决这个问题?

答案1

尝试 wuauclt /resetauthorization /detectnow

如果不起作用,请尝试

REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v SusClientId /f

REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v SusClientIdValidation /f

然后

wuauclt /resetauthorization /detectnow

相关内容