Windows Vista Tips

Windows Vista Tips > Newsgroups > Windows Server > Update Services > Wsus Script

Reply
 
 
Joe C
Guest
Posts: n/a

 
      11-17-2009
Hello,
I have a server 2003 box with Wsus 3.0 Sp2 on it. This update server is
tied to our domain though GP. However we do a serious amount of
computer prepping for other people. What I am looking for is a way for
me to use our current update server, on computers that are not part and
will not be part of our domain. Maybe some sort of script that I can
edit in my server's IP and have it force update/reboot the client
computers. I Understand I can edit the local policy, but I was hoping
for a one time thing, once the updates are applied the pc can then use
Microsoft's update site. Any help is appreciated.
Thanks!
Joe
 
Reply With Quote
 
 
 
 
Lawrence Garvin [MVP]
Guest
Posts: n/a

 
      11-17-2009
"Joe C" <> wrote in message
news:%...
> Hello,
> I have a server 2003 box with Wsus 3.0 Sp2 on it. This update server is
> tied to our domain though GP. However we do a serious amount of computer
> prepping for other people. What I am looking for is a way for me to use
> our current update server, on computers that are not part and will not be
> part of our domain. Maybe some sort of script that I can edit in my
> server's IP and have it force update/reboot the client computers. I
> Understand I can edit the local policy, but I was hoping for a one time
> thing, once the updates are applied the pc can then use Microsoft's update
> site. Any help is appreciated.
> Thanks!


It's really as simple as REG file which you can load from a USB key.

Define a target group on your WSUS Server to use for these systems and set
your approvals as desired. You might even consider setting expired deadlines
on that group to force immediate installations of all updates.

Then put this text in a REG key
======================================
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Win dows\WindowsUpdate]
"TargetGroup"="yourTargetGroupName"
"TargetGroupEnabled"=dword:00000001
"WUServer"="http://yourWSUSServerName"
"WUStatusServer"="http://yourWSUSServerName"

[HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Win dows\WindowsUpdate\AU]
"AutoInstallMinorUpdates"=dword:00000001
"DetectionFrequencyEnabled"=dword:00000001
"DetectionFrequency"=dword:00000002
"AUOptions"=dword:00000004
"ScheduledInstallDay"=dword:00000000
"ScheduledInstallTime"=dword:00000003
"UseWUServer"=dword:00000001
======================================

And put this text in another REG key to 'undo' the above and restore normal
AU functionality
======================================
Windows Registry Editor Version 5.00

[HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Win dows\WindowsUpdate]
"TargetGroup"=""
"TargetGroupEnabled"=dword:00000000
"WUServer"=""
"WUStatusServer"=""

[HKEY_LOCAL_MACHINE\Software\Policies\Microsoft\Win dows\WindowsUpdate\AU]
"AutoInstallMinorUpdates"=dword:00000001
"DetectionFrequencyEnabled"=dword:00000000
"DetectionFrequency"=dword:0000001c
"AUOptions"=dword:00000004
"ScheduledInstallDay"=dword:00000000
"ScheduledInstallTime"=dword:00000003
"UseWUServer"=dword:00000000
======================================


--
Lawrence Garvin, M.S., MCITP:EA, MCDBA
Principal/CTO, Onsite Technology Solutions, Houston, Texas
Microsoft MVP - Software Distribution (2005-2009)

My Blog: http://onsitechsolutions.spaces.live.com
Microsoft WSUS Website: http://www.microsoft.com/wsus
My MVP Profile: http://mvp.support.microsoft.com/pro...awrence.Garvin

 
Reply With Quote
Reply

Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
WSUS and microsoftupdate don't seem to agree Freaky Update Services 1 11-13-2009 02:08 PM
wsus 3.0 sp2 reporting issue and fail over option George Active Directory 1 11-05-2009 07:14 AM
Re: Update Services not going to local server MowGreen Update Services 6 10-30-2009 04:50 AM
Re: SBS & WSUS - Doesnt seem to work! Larry Struckmeyer[SBS-MVP] Windows Small Business Server 1 10-27-2009 03:00 AM
Trivial startup script won't run in Vista Jeff Vandervoort Windows Vista Administration 1 10-07-2008 08:23 PM



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59