You sure it's been 237Mo (Client)? For me, the Microsoft.Net folder is already over 310Mo after installing .Net4, and free disk space, increased from 19.1Go to 18.64Go Thanks
Friends. If I integrate the distribution, I will need to consistently run the integration for all editions wim images? Only edit the install.wim? after the updates can only replace it in the ISO of the original disc?
I have recently stumbled upon this thread and have found very useful. Thank you all! @Burfadel, I was checking out your Windows update installer and I reckon it's pretty cool. I'm yet to give it a try though. However, I think that I have may found a couple of problems with the tweaks: Firstly the entries for AdditionalCriticalWorkerThreads and AdditionalDelayedWorkerThreads are setting the values to 32. However MS article says that the max value is 0x10 (hex) or 16 decimal for both of these? Also shouldn't the entries for "MaximumTransferLengh" be "MaximumTransferLength" (ie missing a "t" in Length)? Regards John
Thankyou for finding those! Yes, you are correct in both accounts. I have made the corrections locally and they will be in the next monthly update (for WU satisfaction). The worker thread setting were meant to be 12, for some reason I wrote 32. Set to 32, Windows should actually automatically use the limit of 16.
I think that that will be an issue as its such a big file, its very simple to inject the updates into the install. wim file, just do this... First copy the below code into say notpad and save it as inject.cmd. Code: MD %~dp0MOUNT Dism.exe /Mount-Wim /WimFile:%~dp0install.wim /Index:1 /MountDir:%~dp0MOUNT Dism.exe /image:%~dp0MOUNT /Add-Package /PackagePath:"%~dp0x86" Dism.exe /Unmount-Wim /MountDir:%~dp0MOUNT /commit Dism.exe /Mount-Wim /WimFile:%~dp0install.wim /Index:2 /MountDir:%~dp0MOUNT Dism.exe /image:%~dp0MOUNT /Add-Package /PackagePath:"%~dp0x86" Dism.exe /Unmount-Wim /MountDir:%~dp0MOUNT /commit Dism.exe /Mount-Wim /WimFile:%~dp0install.wim /Index:3 /MountDir:%~dp0MOUNT Dism.exe /image:%~dp0MOUNT /Add-Package /PackagePath:"%~dp0x86" Dism.exe /Unmount-Wim /MountDir:%~dp0MOUNT /commit Dism.exe /Mount-Wim /WimFile:%~dp0install.wim /Index:4 /MountDir:%~dp0MOUNT Dism.exe /image:%~dp0MOUNT /Add-Package /PackagePath:"%~dp0x86" Dism.exe /Unmount-Wim /MountDir:%~dp0MOUNT /commit Dism.exe /Mount-Wim /WimFile:%~dp0install.wim /Index:5 /MountDir:%~dp0MOUNT Dism.exe /image:%~dp0MOUNT /Add-Package /PackagePath:"%~dp0x86" Dism.exe /Unmount-Wim /MountDir:%~dp0MOUNT /commit REM Check for errors before closing. PAUSE Create a folder on your c: drive call it "Update" now move the inject.cmd file into it Now put all the updates that you want to inject in a new folder called x86 copy that folder into your update folder Now copy your orginal install.wim file into the update folder now run the cmd file and go had have a coffee as it will take a while. This will update all version of windows 7 within the install.wim. But remember that some updates will not allow you to inject, Like Windows6.1-KB2533552. but youcan install this manually or allow windows update to do it for you. now if you need 64bit code, here you go... Code: MD %~dp0MOUNT Dism.exe /Mount-Wim /WimFile:%~dp0install.wim /Index:1 /MountDir:%~dp0MOUNT Dism.exe /image:%~dp0MOUNT /Add-Package /PackagePath:"%~dp0x64" Dism.exe /Unmount-Wim /MountDir:%~dp0MOUNT /commit Dism.exe /Mount-Wim /WimFile:%~dp0install.wim /Index:2 /MountDir:%~dp0MOUNT Dism.exe /image:%~dp0MOUNT /Add-Package /PackagePath:"%~dp0x64" Dism.exe /Unmount-Wim /MountDir:%~dp0MOUNT /commit Dism.exe /Mount-Wim /WimFile:%~dp0install.wim /Index:3 /MountDir:%~dp0MOUNT Dism.exe /image:%~dp0MOUNT /Add-Package /PackagePath:"%~dp0x64" Dism.exe /Unmount-Wim /MountDir:%~dp0MOUNT /commit Dism.exe /Mount-Wim /WimFile:%~dp0install.wim /Index:4 /MountDir:%~dp0MOUNT Dism.exe /image:%~dp0MOUNT /Add-Package /PackagePath:"%~dp0x64" Dism.exe /Unmount-Wim /MountDir:%~dp0MOUNT /commit If you are using 64bit version, dont forget to change the folder name from x86 to x64!