部份電腦主機一直無法收到WSUS的更新通知.經過查詢CLIENT的LOG檔

(在WINDOWS\WINDOWSUPDATA.LOG)

,所以就把改好的登錄檔重新匯出,再到出問題的電腦執行登錄檔內容如下,將紅色的部份改為自己的IP即可囉

Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate]
"ElevateNonAdmins"=dword:00000001
"WUServer"="http://172.22.3.11"
"WUStatusServer"="http://172.22.3.11"

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU]
"RescheduleWaitTime"=dword:00000005
"NoAutoRebootWithLoggedOnUsers"=dword:00000001
"NoAutoUpdate"=dword:00000000
"AUOptions"=dword:00000004
"ScheduledInstallDay"=dword:00000000
"ScheduledInstallTime"=dword:00000003
"UseWUServer"=dword:00000001
"DetectionFrequencyEnabled"=dword:00000001
"DetectionFrequency"=dword:00000001

 

另外需要再做一個批次檔讓CLIENT可以加速向WSUS主機登錄,批次檔內容如下

@echo on
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
 


arrow
arrow
    文章標籤
    WSUS
    全站熱搜

    sungshu 發表在 痞客邦 留言(0) 人氣()