Enable/disable windows-update from a vbscript - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T17:20:37Z http://stackoverflow.com/feeds/question/295563 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/295563/enable-disable-windows-update-from-a-vbscript 2 Enable/disable windows-update from a vbscript Javier De Pedro 2008-11-17T13:30:49Z 2008-11-20T16:01:35Z <p>I need to disable windows-update service from my installation. I already use vbscript to do some stuff so I would like to do it in vbscript.</p> <p>My knowledge of vbscript (or any other script language) is very limited so...can anybody help me out with that? I'll really appreciate it!</p> <p>Thanks.</p> http://stackoverflow.com/questions/295563/enable-disable-windows-update-from-a-vbscript/295586#295586 1 Answer by Tomalak for Enable/disable windows-update from a vbscript Tomalak 2008-11-17T13:48:23Z 2008-11-20T15:49:38Z <p>If you want to use VBScript, use WMI:</p> <pre><code>strComputer = "." 'could be any computer, not just the local one ' Set objWMIService = GetObject("winmgmts:\\" &amp; strComputer &amp; "\root\cimv2") Set colServiceList = objWMIService.ExecQuery _ ("Select * from Win32_Service where Name = 'wuauserv'") For Each objService in colServiceList objService.ChangeStartMode("Disabled") Next </code></pre> <p>Look into <a href="http://msdn.microsoft.com/en-us/library/aa384896(VS.85).aspx" rel="nofollow">the documentation of the WMI Win32_Service Class</a> to find out what else might be doable.</p> <p>Easier would be the use of <code>sc.exe</code>:</p> <pre> sc config wuauserv start=auto </pre> <p>Here is an excerpt of what <code>sc.exe</code> can do:</p> <pre><code>C:\&gt;sc config Modifies a service entry in the registry and Service Database. SYNTAX: sc &lt;server&gt; config [service name] &lt;option1&gt; &lt;option2&gt;... CONFIG OPTIONS: NOTE: The option name includes the equal sign. type= &lt;own|share|interact|kernel|filesys|rec|adapt&gt; start= &lt;boot|system|auto|demand|disabled&gt; error= &lt;normal|severe|critical|ignore&gt; binPath= &lt;BinaryPathName&gt; group= &lt;LoadOrderGroup&gt; tag= &lt;yes|no&gt; depend= &lt;Dependencies(separated by / (forward slash))&gt; obj= &lt;AccountName|ObjectName&gt; DisplayName= &lt;display name&gt; password= &lt;password&gt; </code></pre> http://stackoverflow.com/questions/295563/enable-disable-windows-update-from-a-vbscript/295602#295602 1 Answer by Javier De Pedro for Enable/disable windows-update from a vbscript Javier De Pedro 2008-11-17T13:53:14Z 2008-11-17T13:53:14Z <p>Thank you Tomalak.</p> <p>I also found that:</p> <pre><code>Const SCHEDULED_INSTALLATION = 1 Set objAutoUpdate = CreateObject("Microsoft.Update.AutoUpdate") Set objSettings = objAutoUpdate.Settings objSettings.NotificationLevel = SCHEDULED_INSTALLATION objSettings.Save </code></pre> <p>This is the link: <a href="http://www.microsoft.com/technet/scriptcenter/resources/tales/sg0705.mspx" rel="nofollow">http://www.microsoft.com/technet/scriptcenter/resources/tales/sg0705.mspx</a></p> <p>So now I have another question. Which solution is better?</p> http://stackoverflow.com/questions/295563/enable-disable-windows-update-from-a-vbscript/299050#299050 4 Answer by Javier De Pedro for Enable/disable windows-update from a vbscript Javier De Pedro 2008-11-18T15:25:04Z 2008-11-20T16:01:35Z <p>Thanks Tomalak and Patrick Cuff. I really appreciate your help. I think this could be a good and complete answer.</p> <p>Method 1: prevents the "Automatic Updates" service from starting automatically when the machine boots.</p> <pre><code>strComputer = "." 'could be any computer, not just the local one ' Set objWMIService = GetObject("winmgmts:\\" &amp; strComputer &amp; "\root\cimv2") Set colServiceList = objWMIService.ExecQuery _ ("Select * from Win32_Service where Name = 'wuauserv'") For Each objService in colServiceList objService.ChangeStartMode("Disabled") Next </code></pre> <p>Method 2: changes the "Automatic Updates" configuration from "Automatic" to "Turn off Automatic Updates". (MSDN lists <a href="http://msdn.microsoft.com/en-us/library/aa385806(VS.85).aspx" rel="nofollow">the other NotificationLevel constants</a>)</p> <pre><code>Const AU_DISABLED = 1 Set objAutoUpdate = CreateObject("Microsoft.Update.AutoUpdate") Set objSettings = objAutoUpdate.Settings objSettings.NotificationLevel = AU_DISABLED objSettings.Save </code></pre> <p>In both cases you won't get automatic updates. With method 1 won't start while with method 2 the service is still running, just not doing anything.</p> <p>You can do both of these things through the GUI: </p> <ul> <li>Method 1: Administrative Tools\Services\Automatic Updates, change "Startup type" from "Automatic" to "Disabled".</li> <li>Method 2: Control Panel\Automatic Updates, select "Turn off Automatic Updates". </li> </ul>