show/hide this revision's text 3 fixed code & text. roll back if you want.

Thanks Tomalak and Patrick Cuff. I really appreciate your help. I think this could be a good and complete answer.

Answer

Method 1: tells prevents the "Automatic Updates" service to start from starting automatically when the machine boots(change "Automatic" to "Disabled" below to stop the service and prvent it from starting).

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("Automatic"objService.ChangeStartMode("Disabled")
Next

Answer

Method 2: changes the "Automatic Updates" service configuration from "Automatic" to "Turn off Automatic Updates". (MSDN lists the other NotificationLevel constants)

Const SCHEDULED_INSTALLATION AU_DISABLED = 1

Set objAutoUpdate = CreateObject("Microsoft.Update.AutoUpdate")
Set objSettings = objAutoUpdate.Settings

objSettings.NotificationLevel = SCHEDULED_INSTALLATION
AU_DISABLED
objSettings.Save

In both cases you won't get automatic updates. With the code below (revised to "Disabled") the service method 1 won't start while with the code above method 2 the service is still running, just not doing anything.

You can do both of these things through the GUI. Code above = Control Panel\Automatic Updates, select "Turn off Automatic Updates". Code below = :

  • Method 1: Administrative Tools\Services\Automatic Updates, change "Startup type" from "Automatic" to "Disabled".
  • Method 2: Control Panel\Automatic Updates, select "Turn off Automatic Updates".
show/hide this revision's text 2 edited body

Thanks Tomalak and Patrick Cuff. I really appreciate your help. I think this could be a good and complete answer.

Answer 1: changes tells the "Automatic Updates" service from to start automatically when the machine boots (change "Automatic" to "Turn off Automatic Updates"Disabled" below to stop the service and prvent it from starting).

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("Automatic")
Next

Answer 2: tells changes the "Automatic Updates" service to start automatically when the machine boots (change from "Automatic" to "Disabled" below to stop the service and prvent it from starting)Turn off Automatic Updates".

Const SCHEDULED_INSTALLATION = 1

Set objAutoUpdate = CreateObject("Microsoft.Update.AutoUpdate")
Set objSettings = objAutoUpdate.Settings

objSettings.NotificationLevel = SCHEDULED_INSTALLATION
objSettings.Save

In both cases you won't get automatic updates. With the code below (revised to "Disabled") the service won't start while with the code above the service is still running, just not doing anything. You can do both of these things through the GUI. Code above = Control Panel\Automatic Updates, select "Turn off Automatic Updates". Code below = Administrative Tools\Services\Automatic Updates, change "Startup type" from "Automatic" to "Disabled".

show/hide this revision's text 1

Thanks Tomalak and Patrick Cuff. I really appreciate your help. I think this could be a good and complete answer.

Answer 1: changes the "Automatic Updates" service from "Automatic" to "Turn off Automatic Updates".

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("Automatic")
Next

Answer 2: tells the "Automatic Updates" service to start automatically when the machine boots (change "Automatic" to "Disabled" below to stop the service and prvent it from starting).

Const SCHEDULED_INSTALLATION = 1

Set objAutoUpdate = CreateObject("Microsoft.Update.AutoUpdate")
Set objSettings = objAutoUpdate.Settings

objSettings.NotificationLevel = SCHEDULED_INSTALLATION
objSettings.Save

In both cases you won't get automatic updates. With the code below (revised to "Disabled") the service won't start while with the code above the service is still running, just not doing anything. You can do both of these things through the GUI. Code above = Control Panel\Automatic Updates, select "Turn off Automatic Updates". Code below = Administrative Tools\Services\Automatic Updates, change "Startup type" from "Automatic" to "Disabled".