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.
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
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!
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.
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.
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.
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.