This short guide will explain how to download updates from windows update and apply to your ISO.
First you need to download Windows Updates Downloader.
Install the program.
Then download the update list.
Save that the update list to the install folder of WUD. This is v important, otherwise it wont work..
Double click on the *.ulz and choose to open it with WUD.
Note: you need to double-click on the *.ulz file to associate it with WUD
When you execute WUD, it will show all the updates available and will download the update files to a folder on your hard-drive.
To integrate the updates manually (These are 3 separate commands, you enter in sequence):
X:\Win8\sources\install.wim = location where install.wim is located
Y:\MOUNT = location where image is mounted to
Z:\Temp = temp folder for DISM. You will get 0x80070070 errors otherwise...
The only update you cannot integrate with DISM is KB2771431.
You need the entry /ScratchDir: otherwise you will get errors of type: 0x80070070
More info about the option /ScratchDir here...
Any questions, feel free to post..
First you need to download Windows Updates Downloader.
Install the program.
Then download the update list.
Save that the update list to the install folder of WUD. This is v important, otherwise it wont work..
Double click on the *.ulz and choose to open it with WUD.
Note: you need to double-click on the *.ulz file to associate it with WUD
When you execute WUD, it will show all the updates available and will download the update files to a folder on your hard-drive.
To integrate the updates manually (These are 3 separate commands, you enter in sequence):
Code:
DISM /Mount-Wim /Wimfile:X:\Win8\sources\install.wim /index:1 /MountDir:Y:\MOUNT
Dism /image:Y:\MOUNT /Add-Package /PackagePath:Z:\[Updates /ScratchDir:Z:\Temp\
dism /Unmount-Wim /MountDir:Y:\MOUNT /commit
X:\Win8\sources\install.wim = location where install.wim is located
Y:\MOUNT = location where image is mounted to
Z:\Temp = temp folder for DISM. You will get 0x80070070 errors otherwise...
The only update you cannot integrate with DISM is KB2771431.
You need the entry /ScratchDir: otherwise you will get errors of type: 0x80070070
More info about the option /ScratchDir here...
Any questions, feel free to post..