Windows 10 Hotfix Repository

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

  1. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,681
    103,548
    450
    #3421 Enthousiast, Jan 10, 2017
    Last edited by a moderator: Apr 20, 2017
  2. DontuZoru

    DontuZoru MDL Senior Member

    Mar 6, 2014
    273
    131
    10
    Where is burfadel ? I miss his Visual C++ Redist Installer.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. wpuser

    wpuser MDL Novice

    Sep 18, 2014
    21
    12
    0
    What ist this delta thing? :confused:
     
  4. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,681
    103,548
    450
    Abbodi1406 explained it, i believe, it is a small download package to bring the already installed packages uptodate instead of having to do whole download.

    MRT is not actually needed when you have already have an AV running.
     
  5. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,211
    90,794
    340
    MRT is not needed at all :p
     
  6. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,681
    103,548
    450
    #3433 Enthousiast, Jan 11, 2017
    Last edited: Jan 12, 2017
    I believe MSFT introduced it to serve people with the bare minimum protection when they didn't have an AV installed.

    But you're 10000% correct, it's not needed :D
     
  7. OSMAN

    OSMAN MDL Addicted

    Oct 25, 2009
    592
    103
    30
    do these patches work for ltsb?
     
  8. Prezzi

    Prezzi MDL Junior Member

    Aug 13, 2013
    53
    7
    0
    Hello. I apologize for my ignorance and question, but how do I upgrade only to install.wim, I would skip updating boot.wim and winre.wim. What should I change or remove from the script. And I have ADK installed, however it does not detect dism.exe. If you can help, thank you. Thank you!
     
  9. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,681
    103,548
    450
    #3436 Enthousiast, Jan 11, 2017
    Last edited: Jan 12, 2017
    The ones for 1507/10240 are for 2015 LTSB and the ones for 1607/14393 are for 2016 LTSB.

    Why do you need a script for only update the install.wim with just 3 updates?

    And it's advisable to also update the winre.wim.

    For adk dism to be used you have to change the corresponding line in the script to the windows kits\adk..... folder

    Just run the script as usual and use just the updated install.wim for your project.
     
  10. Prezzi

    Prezzi MDL Junior Member

    Aug 13, 2013
    53
    7
    0
    Sometimes it happens to stop the boot.wim or the winre.wim error in 99.5%. So I asked the question, I use script because it updates all INDEX together and because I'm not an expert like you. Thanks for the help.
     
  11. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,681
    103,548
    450
    #3438 Enthousiast, Jan 11, 2017
    Last edited by a moderator: Apr 20, 2017
    To only update the install.wim, change the commandline in the script to select the install.wim

    Example:
    Code:
    ============================================================
    
    1. Target (x86): "f:\W10UI_1.8\Test\install.wim"
    
    2. Updates: "F:\W10UI_1.8"
    
    3. DISM: "C:\Windows\system32\dism.exe"
    
    ============================================================
    0. Start the process
    ============================================================
    
    Change a menu option, press 0 to start, or 9 to exit:
    But if you are not planning on updating the winre.wim you simply could write a simple text file:

    Code:
    Dism /mount-wim /wimfile:x:\Windows10\Project\install.wim /index:1 /mountdir:y:\mount
    Dism /Image:y:\Mount /Add-Package /PackagePath:d:\Windows10\Project\Update_SS
    Dism /Image:y:\Mount /Add-Package /PackagePath:d:\Windows10\Project\Update_CU
    Dism /Image:y:\Mount /Add-Package /PackagePath:d:\Windows10\Project\Update_Flash
    dism /unmount-wim /mountdir:y:\mount /commit
    Dism /mount-wim /wimfile:x:\Windows10\Project\install.wim /index:2 /mountdir:y:\mount
    Dism /Image:y:\Mount /Add-Package /PackagePath:d:\Windows10\Project\Update_SS
    Dism /Image:y:\Mount /Add-Package /PackagePath:d:\Windows10\Project\Update_CU
    Dism /Image:y:\Mount /Add-Package /PackagePath:d:\Windows10\Project\Update_Flash
    dism /unmount-wim /mountdir:y:\mount /commit
    Dism /mount-wim /wimfile:x:\Windows10\Project\install.wim /index:3 /mountdir:y:\mount
    Dism /Image:y:\Mount /Add-Package /PackagePath:d:\Windows10\Project\Update_SS
    Dism /Image:y:\Mount /Add-Package /PackagePath:d:\Windows10\Project\Update_CU
    Dism /Image:y:\Mount /Add-Package /PackagePath:d:\Windows10\Project\Update_Flash
    dism /unmount-wim /mountdir:y:\mount /commit
    I'm not a scripter but when you personalise these lines and copy/paste them in the ADK elevated CMD window, it will run all the lines one for one.
     
  12. Prezzi

    Prezzi MDL Junior Member

    Aug 13, 2013
    53
    7
    0
    #3439 Prezzi, Jan 11, 2017
    Last edited by a moderator: Apr 20, 2017
    Okay, thank you so much for your attention and for your help. And on the W10UI does not detect the ADK, even if it is installing, has some problem or continue using anyway.
     
  13. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,681
    103,548
    450
    Wait for abbodi1406 to reply :)