Wsus serverda kullanıcı bilgisayarlarımız ya da sunucularımız gözükmeyebiliyor. Bu durumda alttaki maddeleri sırayla uygulayarak sorunu bulabiliriz.
1- İstemcilerde Background Intellligent Transfer Service ve Windows Update servisleri kontrol edilir. Çalışıyorsa yeniden başlatılabilir.
2- İstemci tarafında elle tetikleme yapılması gerekebilir. Wuauclt /detectnow komutu kullanılır. Wuauclt /reportnow komutu wsus konsolda rapor alabilmemiz için kullanılır.
3- Wsus tarafından tetikleme başlatılabilir.
wuauclt.exe /resetauthorization /detectnow
4- Bu noktaya kadar sorun çözülmediyse istemci tarafında wsus ayarlarının doğru olup olmadığı kontrol edilir.
gpresult /r ile doğru Group Policy'lerin uygulandığı kontrol edilir. Bir sorun yoksa;
Kayıt defterindeki ayarların doğru olduğunu kontrol edilir.
reg query HKLM\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate komutunu cmd'de çalıştırılır.
Örnek;
HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate
ElevateNonAdmins REG_DWORD 0x1
TargetGroupEnabled REG_DWORD 0x1
TargetGroup REG_SZ All Computer
WUServer REG_SZ http://wsus.berat.com.tr:8530
WUStatusServer REG_SZ http://wsus.berat.com.tr:8530
UpdateServiceUrlAlternate REG_SZ
SetProxyBehaviorForUpdateDetection REG_DWORD 0x0
5- Kayıt defterinde WUServer ve WUStatusServer satırları yoksa ve yanlış ise düzeltilmesi gerekmektedir. Alttaki komutlar ile cmd ile düzeltilir. Komutlar yönetici yetkisi istemektedir. Komut İstemcisini yönetici olarak çalıştırmayı unutmayınız.
New-Item -Path "HKLM:Software\Policies\Microsoft\Windows\WindowsUpdate"
New-Item -Path "HKLM:Software\Policies\Microsoft\Windows\WindowsUpdate\AU"
Set-ItemProperty -Path "HKLM:\software\policies\Microsoft\Windows\WindowsUpdate" -Name WUServer -Value "http://wsus.dilerbank.com.tr:8530" -Type String -force
Set-ItemProperty -Path "HKLM:\software\policies\Microsoft\Windows\WindowsUpdate" -Name WUStatusServer -Value "http://wsus.dilerbank.com.tr:8530" -Type String -force
Set-ItemProperty -Path "HKLM:\software\policies\Microsoft\Windows\WindowsUpdate\AU" -Name UseWUServer -Value "1" -Type DWORD -force
6- Bazen aynı imaj üzerinden kurduğumuz işletim sistemlerinde çakışma meydana gelebiliyor. Bu durumda kayıt defterinden SUSClientID kaydını silmemiz ve yekrardan elle tetiklememiz gerekir. Komut İstemcisini yönetici olarak çalıştırmayı unutmayınız.
reg delete "HKLM\Software\Microsoft\Windows\CurrentVersion\WindowsUpdate" /v SUSClientID /f
Wuauclt /detectnow
wuauclt /reportnow
wuauclt /resetauthorization /detectnow
Comments