Friday 24 February 2012

WSUS'da replika sunuculardan raporlama bilgisini toplamak

Replika sunucularinizdaki istemci ve guncelleme durumlarinin toparlanip upstream sunucunuza gonderilmesini saglayabilirsiniz, bu size WSUS da raporlamada merkezi kullanim kolayligi saglayacaktir.

Bu ozelligi aktive etmek icin.
1. Upstream sunucunuzda yonetim konsoluna girip, Options altindaki Reporting Rollup kismina giriniz
2. Ve Roll up status from replica downstream servers kutucugunu secip islemi onaylayiniz.

Eger istemci taramasi sirasinda sunucunuz bir istemcide degisiklik sezerse, bu istemcinin ismi, grubu, IP adresi, isletim sistemi olabilir, istemci ile ilgili bilgileri bir sonraki rollup ta sunucunuza gonderecektir.

Thursday 9 February 2012

WSUS konsolunda gozukmeyen istemciler

Cok yaygin olarak karsilasilan bazi WSUS istemcilerinin WSUS konsolunda listelenmemesi, bazen listelenmesi probleminin temelinde %99 mukerrer SUSClientID degerleri yatmakta, MS'in KB903262 makaleside bu soruna isik tutmakta.

Bu sorunu gidermek ise oldukca basit, asagidaki gibi bir batch dosyasini yaratip sorunlu istemcilerde GPO yardimi ile veya elle calistirip sorunu giderebilirsiniz. Eger GPO veya SMS/SCCM ile calistiracaksaniz elbette @Echo off yapmaniz ve Pause komutlarini kaldirmaniz gerekecektir.

 
@echo on
Echo 1. Stopping the wuauserv service
net stop wuauserv
Pause
Echo 2. Deleting the HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\AccountDomainSid registry key (if it exists)
REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v AccountDomainSid /f
Echo 3. Deleting the HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\PingID registry key (if it exists)
REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v PingID /f
Echo 4. Deleting the HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\SusClientId registry key (if it exists)
REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v SusClientId /f
Echo 5. Deleting the HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate\SusClientIDValidation registry key (if it exists)
REG DELETE "HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v SusClientIDValidation /f
Echo 5. Restarting the wuauserv service
net start wuauserv
Pause
Echo 6. Resetting the Authorization Cookie (Wait 10 minutes for a detection cycle to finish)
wuauclt /resetauthorization /detectnow
Pause