Everytime I try to slipstream Internet Explorer 11 [2014-12-17] using WinReducer 7.0 - v3.0 always failed,
then i tried using DiSM and get Error: 0x800f081e (The specified package is not applicable to this image.)
i assumed:
- it happen if ONLY all update files put in same or one folder,
- Adding package Microsoft-Windows-InternetExplorer-Package-TopLevel~31bf3856ad364e35~x86~~11.2.9600.16428 need depedency files like integrated Windows 8.1 Update 1,
so i slipstream (integrated updates) based original Windows Updates Downloader (WUD) downloaded folder then slipstream iE11 completed successfully.
To integrate the updates manually using DiSM (These are separate script commands, enter in sequence):
%WiMFiLE% = Specifies location where install.wim is located
%MOUNT% = Specifies location where image is mounted to
%WUDDiR% = Specifies location where WUD downloaded folder is located
%SCRATCH% = Specifies the path to a scratch directory
%NEWFiLE% = Specifies location where optimized install.wim will be saved
More info about the Download MS updates and implement with DISM manually, before WinReducer
here...
These is the result of my Trial-Run: http://tny.cz/b0b19554
##: 2.45 GB (2,640,370,103 bytes) W7SP1_WUD.20141217_DiSM_[install.wim]
##: 614 MB (643,915,777 bytes) [W7SP1_WUD.20141217_WR70.v3.11_WinSXS_Cleanup_install.wim]
- 20150116_Windows 7 Ultimate SP1 (x86) Rollup Updates 2014-12-17.log.7z
- 20150116_WR70.v3.11_WinSXS_Cleanup_(0).wccf.7z
Question for winter,
1. After slimmingdown with WinReducer 7.0 - v3.09, i run "DiSM /image:"%MOUNT%" /Get-Packages" and get result Error: 3. The directory %MOUNTDiR%\Windows does not appear to be a valid Windows directory.
can you explain why this happen.
2. WinReducer 7.0 - Changelog maybe need a little correction for :
* WinReducer 7.0 - v3.00 (RC12) (21 November 2014) :
- NEW : "System - Integrate Updates - Internet Explorer" : Automatically download and install Internet Explorer 11 during process : Didn't work properly
* WinReducer 7.0 - v3.00 (RC 1) (04 August 2014) :
- UPDATE : "System - Integrate Updates" : Improve Windows Updates integration GUI design (All DOS windows have been removed) and if a Windows Update fails to integrate, an information will be written in the "WinReducer81.log" : "WinReducer70.log"
Hope this helps some
then i tried using DiSM and get Error: 0x800f081e (The specified package is not applicable to this image.)
i assumed:
- it happen if ONLY all update files put in same or one folder,
- Adding package Microsoft-Windows-InternetExplorer-Package-TopLevel~31bf3856ad364e35~x86~~11.2.9600.16428 need depedency files like integrated Windows 8.1 Update 1,
so i slipstream (integrated updates) based original Windows Updates Downloader (WUD) downloaded folder then slipstream iE11 completed successfully.
To integrate the updates manually using DiSM (These are separate script commands, enter in sequence):
Code:
@echo off
cls
REM Mount and Modify Windows 7 Ultimate SP1 Image, please wait ...
DiSM /Mount-Image /ImageFile:"%WiMFiLE%" /Index:1 /MountDir:"%MOUNT%"
REM Add-Package Windows 7 SP1 Security Updates, please wait ...
DiSM.exe /Image:"%MOUNT%" /Add-Package /PackagePath:"%WUDDiR%\Security Updates" /ScratchDir:"%SCRATCH%"
REM Add-Package Windows 7 SP1 Non-Security Updates, please wait ...
DiSM.exe /Image:"%MOUNT%" /Add-Package /PackagePath:"%WUDDiR%\Non-Security Updates" /ScratchDir:"%SCRATCH%" >> "%WR70%\Add-Package %UPD-2%.log"
REM Add-Package Windows 7 SP1 .NET Framework 3.5.1 Updates, please wait ...
DiSM.exe /Image:"%MOUNT%" /Add-Package /PackagePath:"%WUDDiR%\.NET Framework 3.5.1 Updates" /ScratchDir:"%SCRATCH%" >> "%WR70%\Add-Package %UPD-2%.log"
REM Add-Package Windows 7 SP1 Optional Updates, please wait ...
DiSM.exe /Image:"%MOUNT%" /Add-Package /PackagePath:"%WUDDiR%\Optional Updates" /ScratchDir:"%SCRATCH%" >> "%WR70%\Add-Package %UPD-2%.log"
REM Add-Package Windows 7 SP1 WMP12 Updates, please wait ...
DiSM.exe /Image:"%MOUNT%" /Add-Package /PackagePath:"%WUDDiR%\WMP12" /ScratchDir:"%SCRATCH%" >> "%WR70%\Add-Package %UPD-2%.log"
REM Saving Modified 'install.wim' images, please wait ...
DiSM /Commit-Image /MountDir:"%MOUNT%" /CheckIntegrity
REM Unmounts Modified 'install.wim' images, please wait ...
DiSM /Unmount-Image /MountDir:"%MOUNT%" /Discard
REM Cleaning Temporary all Mounted WiM image, Folder and Files !
DiSM /Cleanup-Mountpoints > NUL
RD /S /Q "%MOUNT%" > NUL
RD /S /Q "%SCRATCH%" > NUL
REM Optimizing '%WiMFiLE%' file with "DiSM.v6.3.9600.17031", please wait ...
DiSM /Export-Image /SourceImageFile:"%WiMFiLE%" /SourceIndex:1 /DestinationImageFile:"%NEWFiLE%" /Compress:max /CheckIntegrity
REM [OPTIONAL] Optimizing '%WiMFiLE%' file with "WimLib.v1.7.5-BETA1", please wait ...
REM SET WimLib=%WimLib%\wimlib-imagex.exe
REM "%WimLib%" export "%WiMFiLE%" 1 "%NEWFiLE%" --check --compress=LZX >> "%NEWFiLE%.log"
REM Replacing Modified 'install.wim !
DEL /F /Q "%WiMFiLE%"
RENAME "%NEWFiLE%" "install.wim"
%WiMFiLE% = Specifies location where install.wim is located
%MOUNT% = Specifies location where image is mounted to
%WUDDiR% = Specifies location where WUD downloaded folder is located
%SCRATCH% = Specifies the path to a scratch directory
%NEWFiLE% = Specifies location where optimized install.wim will be saved
More info about the Download MS updates and implement with DISM manually, before WinReducer
here...
These is the result of my Trial-Run: http://tny.cz/b0b19554
##: 2.45 GB (2,640,370,103 bytes) W7SP1_WUD.20141217_DiSM_[install.wim]
##: 614 MB (643,915,777 bytes) [W7SP1_WUD.20141217_WR70.v3.11_WinSXS_Cleanup_install.wim]
- 20150116_Windows 7 Ultimate SP1 (x86) Rollup Updates 2014-12-17.log.7z
- 20150116_WR70.v3.11_WinSXS_Cleanup_(0).wccf.7z
Show Screenshot :
Question for winter,
1. After slimmingdown with WinReducer 7.0 - v3.09, i run "DiSM /image:"%MOUNT%" /Get-Packages" and get result Error: 3. The directory %MOUNTDiR%\Windows does not appear to be a valid Windows directory.
can you explain why this happen.
2. WinReducer 7.0 - Changelog maybe need a little correction for :
* WinReducer 7.0 - v3.00 (RC12) (21 November 2014) :
- NEW : "System - Integrate Updates - Internet Explorer" : Automatically download and install Internet Explorer 11 during process : Didn't work properly
* WinReducer 7.0 - v3.00 (RC 1) (04 August 2014) :
- UPDATE : "System - Integrate Updates" : Improve Windows Updates integration GUI design (All DOS windows have been removed) and if a Windows Update fails to integrate, an information will be written in the "WinReducer81.log" : "WinReducer70.log"
Hope this helps some