Q.WSUS中發現電腦清單中無法順利加入某台主機。 

SID重覆或WSUS Client ID重覆。SID重覆:使用New SID處理即可。
 
Client ID重覆:
當主機連線至WSUS後,由WSUS派發一組ClientID儲存至該主機登錄檔中。
當作業系統是利用複製的方式產生時,將導致ClientID重覆造成此問題。
重置SSUS ClientID

若用戶端無法在wsus server 主控台看到,也確定有找server報到,可能的原因是clientid 有問題,可以嘗試重設看看來解決此問題。
wsus clientid 可以查詢用戶端 windowsupdate.log

1.尋找WSUS LOG檔,尋找相關的Client ID記錄。(或者可於登錄檔中查詢)
參考網站:http://support.microsoft.com/kb/902093/zh-tw#top
本文將告訴您,如何讀取 Windowsupdate.log 檔案。 如果要檢視記錄檔,請依照下列步驟執行:
按一下 [開始],然後按一下 [執行]。
在 [開啟] 方塊中輸入windowsupdate.log,],,然後再按一下 [確定]]。
2.檢查後,發現主機A、B的Client ID重覆。
主機A:clientId = 7c8fe9ad-603b-407c-b2be-e0f71157aa75,
主機B:clientId = 7c8fe9ad-603b-407c-b2be-e0f71157aa75
 
3.於主機A、B使用以下語法進行Client ID重置。
參考網站:

http://msmvps.com/blogs/athif/pages/66376.aspx
http://gallery.technet.microsoft.com/scriptcenter/9faf2085-f8ca-4799-8d45-b0e654da71f7
 

將下列指令存成bat 後在有問題的用戶端執行 刪除 SSUS

@echo off
Echo Save the batch file "AU_Clean_SID.cmd". This batch file will do the following:
Echo 1.    Stops the wuauserv service
Echo 2.    Deletes the AccountDomainSid registry key (if it exists)
Echo 3.    Deletes the PingID registry key (if it exists)
Echo 4.    Deletes the SusClientId registry key (if it exists)
Echo 5.    Restarts the wuauserv service
Echo 6.    Resets the Authorization Cookie
Echo 6.    More information on http://msmvps.com/Athif
Pause
@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
Pause

執行完畢後,在執行下列指令讓用戶端重新報到及回報目前更新狀態

wuauclt /detectnow  > 手動讓用戶端立即至WSUS報到
wuauclt /reportnow   > 手動讓用戶端立即回報更新狀態


arrow
arrow

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