有从WSUS服务器Windows更新客户端的快速方法吗?
操作系统 – Windows Server 2008 R2客户端 – Windows XP和Windows 7 WSUS服务器版本3.2.7600.226
您可以在Windows客户端上使用wuauclt / detectnow命令。 等待一段时间,你可以在C:Windows \ WindowsUpdate.log检查日志
你可以试试Rob Dunn的这个脚本
它会检查wsus服务器上的更新,下载并安装它们,安装后可以设置为重启或不重启。
您可以通过psexec或远程pipe理解决scheme将其推送到客户端。
所有的命令都需要在cmd窗口中运行。
我在Windows XP到Windows Server 2012的电脑中使用过很多次;-)
强制检测更新(Light Level)
wuauclt /detectnow
强制检测更新(中级)
net stop wuauserv REG DELETE "HKLM\Software\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v LastWaitTimeout /f REG DELETE "HKLM\Software\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v DetectionStartTime /f Reg Delete "HKLM\Software\Microsoft\Windows\CurrentVersion\WindowsUpdate\Auto Update" /v NextDetectionTime /f net start wuauserv wuauclt /detectnow
强制检测更新(做它杂种级别)
net stop wuauserv RD /S /QC:\windows\softwaredistribution\Authcabs RD /S /QC:\windows\softwaredistribution\Datastore RD /S /QC:\windows\softwaredistribution\Download RD /S /QC:\windows\softwaredistribution\EventCache RD /S /QC:\windows\softwaredistribution\Selfupdate RD /S /QC:\windows\softwaredistribution\WebSetup RD /S /QC:\windows\softwaredistribution\WuRedir Del /QC:\windows\softwaredistribution\*.* regsvr32 /s wuapi.dll regsvr32 /s wups.dll regsvr32 /s wuaueng.dll regsvr32 /s wuaueng1.dll regsvr32 /s wucltui.dll regsvr32 /s wuweb.dll regsvr32 /s MSXML3.dll net start wuauserv wuauclt /detectnow