After the Upgrade to 1511 Windows Update don´t work.

Discussion in 'Windows 10' started by secaspider, Nov 16, 2015.

  1. secaspider

    secaspider MDL Novice

    Nov 22, 2009
    20
    0
    0
    #1 secaspider, Nov 16, 2015
    Last edited: Nov 17, 2015
    Hello. I finished the precess to 1511 vesion upgrade couple of days ago, via Windows update menu.
    When I rebooted and check the new features I realized what Windows Upgrade is showing always teh same message saying (traslating from Spanish which is my version) "we must to some changes in the upgrade. We will go on trying.". I click on win10 uograde one after others times always with same message. I tried to dowload a Fix from Microsoft but doesnt make different. So I do not what else I can do.

    Any help will be apreciate it. Thank you and sorry for my english.

    I notice is like it hasn´t access to the wan . Must be broken the files of Windows Update o_O
     
  2. Solitary

    Solitary MDL Novice

    Jul 25, 2015
    2
    3
    0
    I have this problem too. If I turn off Windows Firewall, it works. Same thing with Homegroup.

    The Windows Updates Solution does not fix it as it seems to be a firewall problem. Even resetting the firewall to default values does not solve it. If anyone has any ideas, I would be grateful.
     
  3. odiebugs1

    odiebugs1 MDL Expert

    Jul 30, 2015
    1,390
    465
    60
    #3 odiebugs1, Nov 18, 2015
    Last edited by a moderator: Apr 20, 2017
    You can try this.

    Open Notepad and paste following code in it:

    Code:
     @ECHO OFF
    echo Simple Script to Reset / Clear Windows Update
    echo.
    PAUSE
    echo.
    attrib -h -r -s %windir%\system32\catroot2
    attrib -h -r -s %windir%\system32\catroot2\*.*
    net stop wuauserv
    net stop CryptSvc
    net stop BITS
    ren %windir%\system32\catroot2 catroot2.old
    ren %windir%\SoftwareDistribution sold.old
    ren "%ALLUSERSPROFILE%\application data\Microsoft\Network\downloader" downloader.old
    net Start BITS
    net start CryptSvc
    net start wuauserv
    echo.
    echo Task completed successfully...
    echo.
    PAUSE

    Save as " wureset.bat " .

    Just RT click on it and run as Admin.