Enable/disable windows-update from a vbscript - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T17:20:37Zhttp://stackoverflow.com/feeds/question/295563http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/295563/enable-disable-windows-update-from-a-vbscript2Enable/disable windows-update from a vbscriptJavier De Pedro2008-11-17T13:30:49Z2008-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#2955861Answer by Tomalak for Enable/disable windows-update from a vbscriptTomalak2008-11-17T13:48:23Z2008-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:\\" & strComputer & "\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:\>sc config
Modifies a service entry in the registry and Service Database.
SYNTAX:
sc <server> config [service name] <option1> <option2>...
CONFIG OPTIONS:
NOTE: The option name includes the equal sign.
type= <own|share|interact|kernel|filesys|rec|adapt>
start= <boot|system|auto|demand|disabled>
error= <normal|severe|critical|ignore>
binPath= <BinaryPathName>
group= <LoadOrderGroup>
tag= <yes|no>
depend= <Dependencies(separated by / (forward slash))>
obj= <AccountName|ObjectName>
DisplayName= <display name>
password= <password>
</code></pre>
http://stackoverflow.com/questions/295563/enable-disable-windows-update-from-a-vbscript/295602#2956021Answer by Javier De Pedro for Enable/disable windows-update from a vbscriptJavier De Pedro2008-11-17T13:53:14Z2008-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#2990504Answer by Javier De Pedro for Enable/disable windows-update from a vbscriptJavier De Pedro2008-11-18T15:25:04Z2008-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:\\" & strComputer & "\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>