Hi AC Nova
Thanks for your response. I dont think that script will help the issue i am having. I think is has something to do with the fact the servers are i a round robin load balance.
The reason i think this is that i have a total of 6 Terminal servers and the only 2 not showing are the 2 in the load balance. The group policy has applied properly to these servers and the servers are getting updates from the WSUS, but they just dont show in the WSUS console, So i am thinking it migt be an issue with the 2 entries in DNS for the round robin.
All the terminal servers are under the same GP Policy.
Main Topics
Browse All Topics





by: AC_NovaPosted on 2009-07-03 at 03:41:37ID: 24771431
This was happening on some PCs in on my domain. I found a script which reauthorises the wsus settings, and set it to startup in Group policy computer settings.
l")
indows\Cur rentVersio n\WindowsU pdate"
.exe stop wuauserv", 0, True .exe start wuauserv", 0, True
uclt.exe /resetauthorization /detectnow"
It might work for the servers, its vbs:
Set oShell = CreateObject("WScript.Shel
sRegKey = "HKLM\SOFTWARE\Microsoft\W
' suppress error in case values does not exist
On Error Resume Next
' check for marker
sIDDeleted = oShell.RegRead( sRegKey & "\IDDeleted")
' to be sure values is only deleted once, test on marker
If sIDDeleted <> "yes" Then
' delete values
oShell.RegDelete sRegKey & "\AccountDomainSid"
oShell.RegDelete sRegKey & "\PingID"
oShell.RegDelete sRegKey & "\SusClientId"
' Stop and start the Automatic updates service
oShell.Run "%SystemRoot%\system32\net
oShell.Run "%SystemRoot%\system32\net
' Run wuauclt.exe with resetauthorization
sCmd = "%SystemRoot%\system32\wua
oShell.Run sCmd, 0, True
' create marker
oShell.RegWrite sRegKey & "\IDDeleted", "yes"
End If