1

I had my servers configured by group policy to download updates and notify for install. Unfortunately it seems microsoft did publish a recent update on the 2nd of course which cause the servers to install only this update. This update required a restart after installation. So most critical servers restarted and raised an alarm.

I have been looking for a solution and I notice that there is also a policy which states that "No auto-restarts with logged on users for scheduled automatic updates" which was not enabled. If course at 3:00am in the night no one is logged onto the servers. i have enabled this policy and still don't know if it will solve my problem.

Any ideas on how I can completely stopping the servers to ever restart.

user50727
  • 11
  • 2

2 Answers2

2

For some strange reason reboots started by Windows Update have a nasty track record of causing problems. The solution I've been using for years is to script the install and then reboot separately via a scheduled task. I've had no reboot problems since doing this.

I use version 2.4 of this script (because it just works and I see no reason to upgrade it), which I've modified slightly to create a flag file when a reboot is required. The script check for updates and installs any that it finds. That script runs late on Saturday night via the Task Scheduler. Early Sunday morning another scheduled task fires a script which looks for that flag file. If it's found the file is deleted and the server performs a reboot.

John Gardeniers
  • 27,458
  • 12
  • 55
  • 109
0

You could look into using WSUS, combining it with group policy to force your update settings onto your servers. Please see the following website as it has quite helpful information: http://www.wsuswiki.com

JamesK
  • 1,646
  • 11
  • 19
  • Thank you for your suggestions. John I like your idea of a script and will look into the one you offered. James I am using WSUS in my current setting. You think I can achieve what I want with WSUS and group policy. If yes I will appreciate if you show me where to look. Thanks in advance. – user50727 Aug 17 '10 at 23:48