Windows Update Server PDF Print E-mail

A real quick way to create a windows update server. (WSUS 3.0)

These steps are for windows server 2003
if you have the latest service packs some of the following will already be installed.

Your going to be prompted with the places to install wsus, updates, and the database. If your over 500 clients you are suposed to use MS SQL 2005 server.
Now on the client computers you want to run a reg script that looks something like this

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate]
"WUServer"="http://127.0.0.1"
"WUStatusServer"="http://127.0.0.1"
"TargetGroupEnabled"=dword:00000001
"TargetGroup"="Staff"

[HKEY_LOCAL_MACHINE\SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate\AU]
"NoAutoUpdate"=dword:00000000
"AUOptions"=dword:00000003
"ScheduledInstallDay"=dword:00000000
"ScheduledInstallTime"=dword:00000003
"UseWUServer"=dword:00000001
"NoAutoRebootWithLoggedOnUsers"=dword:00000001
"RescheduleWaitTimeEnabled"=dword:00000001
"RescheduleWaitTime"=dword:0000002d

The system will be categorized as the created group called staff. Server side targeting must be turned on at the server. Don't forget to change the ip address to match your server.

full info here: http://technet.microsoft.com/en-us/library/cc708521(WS.10).aspx 

Last Updated on Monday, 06 July 2009 16:13