0x80070426 error on windows update / minitool

Discussion in 'Windows 10' started by RanCorX2, Jun 24, 2017.

  1. RanCorX2

    RanCorX2 MDL Addicted

    Jul 19, 2009
    999
    554
    30
    #1 RanCorX2, Jun 24, 2017
    Last edited: Jun 24, 2017
    does anyone know what causes this error when scanning for updates?

    have some of the services changed in the creators update? i never had this issue before, it's got something to do with disabled services but i haven't narrowed it down to what one yet.

    nvm, figured it out, timebroker service was disabled.
     
  2. RanCorX2

    RanCorX2 MDL Addicted

    Jul 19, 2009
    999
    554
    30
    i still haven't resolved this, thought it was timebroker being offer, but it's still not searching for updates, i know it's one or more services i switch off that causes it to happen in settings app wu and in the minitool, but haven't narrowed it down to which services yet..i know it's not a big deal.
     
  3. TairikuOkami

    TairikuOkami MDL Expert

    Mar 15, 2014
    1,172
    1,055
    60
    CU requires Windows Firewall running again, it was not needed in AU, but that would result in another error.

    I use this to update. You also need those, if you have them disabled: Dhcp, CryptSvc, BITS, Winmgmt, (CertPropSvc for Insider).

    Code:
    sc config BFE start= auto
    sc config Dhcp start= auto
    sc config netprofm start= auto
    sc config MpsSvc start= auto
    sc config NlaSvc start= auto
    sc config nsi start= auto
    sc config wuauserv start= auto
    
    net start nsi
    net start NlaSvc
    net start Dhcp
    net start BFE
    net start MpsSvc
    net start BITS
    net start wuauserv
    
    wmic path win32_networkadapter where index=0 call disable
    wmic path win32_networkadapter where index=1 call disable
    wmic path win32_networkadapter where index=2 call disable
    wmic path win32_networkadapter where index=3 call disable
    wmic path win32_networkadapter where index=4 call disable
    wmic path win32_networkadapter where index=5 call disable
    
    timeout 5
    
    wmic path win32_networkadapter where index=0 call enable
    wmic path win32_networkadapter where index=1 call enable
    wmic path win32_networkadapter where index=2 call enable
    wmic path win32_networkadapter where index=3 call enable
    wmic path win32_networkadapter where index=4 call enable
    wmic path win32_networkadapter where index=5 call enable
    
    start "" "D:\Software\Temp\Soft\wumt_x64.exe"
    
    timeout /t -1
    
    sc config BFE start= disabled
    sc config MpsSvc start= disabled
    sc config Dhcp start= disabled
    sc config netprofm start= disabled
    sc config NlaSvc start= disabled
    sc config nsi start= disabled
    sc config wuauserv start= disabled
    
    net stop MpsSvc /y
    net stop BFE /y
    net stop netprofm /y
    net stop NlaSvc /y
    net stop Dhcp /y
    net stop nsi /y
    net stop wuauserv /y