Windows 10 Hotfix Repository

Discussion in 'Windows 10' started by Tito, Oct 1, 2014.

  1. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,192
    90,679
    340
    Too much complications

    do as @Flipp3r suggested

    or you have two W10UI.cmd for each architecture, and modify each one with proper paths (target & updates location) and desirable options (resetbase or cleanup)
    set autostart=1, and remove pause >nul from the end line before goto :eof

    then you can call the scripts from another simple one, e.g.
    Code:
    call W10UIx64.cmd
    call W10UIx86.cmd
     
  2. Kargeras

    Kargeras MDL Novice

    Jan 13, 2016
    25
    4
    0
    Thank you for your reply,

    I do not wish to integrate.

    I want to install Windows.10.Professional.v1803 - Build 17134.1 from a clean ISO (which I already have).
    Then I would like to be up-to-date, relative to date of installation, but without using the Windows Update feature.

    For this I understand that I have to get the latest, relative to date of installation, of the following and install them in this precise order:

    1. SSU
    2. Flash
    3. CU
    4. Delta?

    Is my understanding correct?

    Sorry for the noob question, there is so much information on this forum that I get confused.

    :(
     
  3. Outbreaker

    Outbreaker MDL Senior Member

    Jan 20, 2018
    333
    85
    10
    If i'm not wrong then Delta is already in CU.
     
  4. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,647
    103,306
    450
    I just copied the cmd's:D
    1. SSU
    2. Flash
    3. CU

    The order is for both, integrating the updates offline or online.

    Delta is not needed.
     
  5. Super Spartan

    Super Spartan MDL Expert

    May 30, 2014
    1,737
    1,004
    60
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. Super Spartan

    Super Spartan MDL Expert

    May 30, 2014
    1,737
    1,004
    60
    I had the same issue, I fixed it by stopping the Windows Update Service, deleting all files in the C:\Windows\SoftwareDistribution\Download

    then rebooted and checked for updates again, now it downloaded the updates properly and installed them
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. KedarWolf

    KedarWolf MDL Addicted

    Mar 17, 2016
    977
    874
    30
    I made a WU.bat file by pasting this code into a NotePad file and saving as All Files WU.bat. right click, Run As Admin.
    Code:
    net stop wuauserv
    CD %Windir%
    CD SoftwareDistribution
    DEL /F /S /Q Download
    net start wuauserv
     
  8. Super Spartan

    Super Spartan MDL Expert

    May 30, 2014
    1,737
    1,004
    60
    Perfect! Thanks bro
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  9. kuroda

    kuroda MDL Senior Member

    Aug 25, 2012
    445
    32
    10
    some new Dynamic update for the installation media in 1803?
     
  10. cuteee

    cuteee MDL Guru

    Oct 13, 2012
    5,760
    995
    180
    I let WU download and install the CU. Only one file. This is one of couple things are best in Windows 10.
     
  11. KedarWolf

    KedarWolf MDL Addicted

    Mar 17, 2016
    977
    874
    30
    If I use the below code in a WU.bat file and run it as admin the latest 1803 CU will reinstall. Is this normal?

    Code:
    net stop wuauserv 
    CD %Windir% 
    CD SoftwareDistribution 
    DEL /F /S /Q Download
    net start wuauserv
    
     
  12. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,647
    103,306
    450
    No, it's not normal, 1803 updates just fine on my systems.

    Btw: The download folder can simply be deleted without any other action.
     
  13. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,647
    103,306
    450
  14. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,647
    103,306
    450
    I never got one before on WU:thinking: :D
     
  15. TeamOS

    TeamOS MDL Guru

    May 27, 2013
    3,036
    1,739
    120
    me either but im using ryzen hmm..
     
  16. s1ave77

    s1ave77 Has left at his own request

    Aug 15, 2012
    16,093
    24,397
    340
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  17. steven4554

    steven4554 MDL Expert

    Jul 12, 2009
    1,499
    2,800
    60
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...