[Solved] [Q:] Where are the WU settings in registry?

Discussion in 'Windows 8' started by moderate, Dec 24, 2014.

  1. moderate

    moderate MDL Guru

    Aug 31, 2009
    3,381
    2,479
    120
    Hello,

    please where are these Windows Update settings ("Never check for updates" - below) in registry?

    On ARM this "Change settings" option is missing, so I need to change it elsewhere.

    wu.jpg

    Thanks.
     
  2. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    5,799
    19,382
    180
    #2 mxman2k, Dec 24, 2014
    Last edited by a moderator: Apr 20, 2017
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. moderate

    moderate MDL Guru

    Aug 31, 2009
    3,381
    2,479
    120
    #3 moderate, Dec 24, 2014
    Last edited: Dec 24, 2014
    (OP)
    Thanks.

    Is there also the setting "Give me the updates for other MS products" anywhere? I have noticed that option in Silverlight installation too.
    Also, is there any list for "ForcedReboot"=dword values? I have dword:00000002 on all my PCs and dword:00000001 on my Windows ARM tablet.
     
  4. mxman2k

    mxman2k MDL Developer

    Jun 20, 2007
    5,799
    19,382
    180
    #4 mxman2k, Dec 24, 2014
    Last edited by a moderator: Apr 20, 2017
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. moderate

    moderate MDL Guru

    Aug 31, 2009
    3,381
    2,479
    120
    #5 moderate, Dec 24, 2014
    Last edited by a moderator: Apr 20, 2017
    (OP)
    Yes, it is:
    Code:
    "EnableFeaturedSoftware"=dword:00000001
    Thanks again...

    However it seems, it is for W7, because tickling that option in W8-1 doesn't do anything. :)
     
  6. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,226
    84,916
    340
    #6 abbodi1406, Dec 24, 2014
    Last edited by a moderator: Apr 20, 2017
    That's require vbs script:
    Code:
    Set ServiceManager = CreateObject("Microsoft.Update.ServiceManager")
    ServiceManager.ClientApplicationID = "My App"
    
    Set NewUpdateService = ServiceManager.AddService2("7971f918-a847-4430-9279-4a52d1efe18d",7,"")
    
    or powershell command:
    Code:
    $ServiceManager = New-Object -ComObject "Microsoft.Update.ServiceManager"
    $ServiceManager.ClientApplicationID = "My App"
    $ServiceManager.AddService2("7971f918-a847-4430-9279-4a52d1efe18d",7,"")
    
     
  7. moderate

    moderate MDL Guru

    Aug 31, 2009
    3,381
    2,479
    120
    I made it working. Thanks to everybody.