sus update working…

7 Nov

sus update working…

The registry only had four keys but need seven to work properly. The NoAutoUpdate key = 0 is the key that impacts this the most…

The registry only had four keys but need seven to work properly. The NoAutoUpdate key = 0 is the key that impacts this the most. If this key is not set to zero then the updates on the client could be gotten by going to Windows Updates through the control panel. If you set this key to zero then all of the options in the Windows Update dialog box are disabled forcing the client to get its updates from the SUS server. Below are the two keys.

The key that did not work properly:
REGEDIT4

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate]
“WUServer”=”http://susserver”
“WUStatusServer”=”http://susserver”

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU]
“UseWUServer”=dword:00000001
“AUOptions”=dword:00000004
“ScheduledInstallDay”=dword:00000000
“ScheduledInstallTime”=dword:00000017

The key that did work correctly:

REGEDIT4

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate]
“WUServer”=”http://susserver”
“WUStatusServer”=”http://susserver”

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU]
“UseWUServer”=dword:00000001
“AUOptions”=dword:00000004
“ScheduledInstallDay”=dword:00000000
“ScheduledInstallTime”=dword:00000017
“NoAutoRebootWithLoggedOnUsers”=dword:00000001
“NoAutoUpdate”=dword:00000000
“RescheduleWaitTime”=dword:00000005

hope this helps someone.