To Use the ToolKitHelper.exe separately, follow this link https://forums.mydigitallife.net/threads/msmg-toolkit.50572/page-297#post-1413205
Tested with es_windows_10_multi-edition_vl_version_1709_updated_sept_2017_x64_dvd_100090786.iso Source Image Mounting: Code: =============================================================================== MSMG ToolKit - Select Source from <DVD> Folder =============================================================================== ------------------------------------------------------------------------------- ####Selecting Source Images#################################################### ------------------------------------------------------------------------------- Reading Image Information... =============================================================================== | Index | Arch | Name =============================================================================== | 1 | x64 | Windows 10 Education | 2 | x64 | Windows 10 Education N | 3 | x64 | Windows 10 Enterprise | 4 | x64 | Windows 10 Enterprise N | 5 | x64 | Windows 10 Pro | 6 | x64 | Windows 10 Pro N =============================================================================== Enter the Image Index's # [Range : 1-6, * - All] : 5 Do You Want to Mount Windows Setup Boot Image ? ['Y'es/'N'o] : Y Do You Want to Mount Windows Recovery Image ? ['Y'es/'N'o] : Y ------------------------------------------------------------------------------- ####Source Image Information################################################### ------------------------------------------------------------------------------- Image : Install.wim Image Index No : 5 Image Name : Windows 10 Pro Image Description : Windows 10 Pro Image Architecture : x64 Image Version : 10.0.16299 Image Service Pack Build : 15 Image Service Pack Level : 0 Image Build : 16299 Image Edition : Professional Image Flag : Professional Image Installation Type : Client Image Default Language : es-ES ------------------------------------------------------------------------------- ####Mounting Source Images##################################################### ------------------------------------------------------------------------------- ------------------------------------------------------------------------------- Mounting [Boot.wim, Index : 1] Image at <\Mount\Boot\1>... ------------------------------------------------------------------------------- Deployment Image Servicing and Management tool Version: 10.0.17095.1000 Mounting image [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------------------------- Mounting [Boot.wim, Index : 2] Image at <\Mount\Boot\2>... ------------------------------------------------------------------------------- Deployment Image Servicing and Management tool Version: 10.0.17095.1000 Mounting image [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------------------------- Mounting [Install.wim, Index : 5] Image at <\Mount\Install>... ------------------------------------------------------------------------------- Deployment Image Servicing and Management tool Version: 10.0.17095.1000 Mounting image [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------------------------- Mounting [WinRE.wim, Index : 1] Image at <\Mount\WinRE>... ------------------------------------------------------------------------------- Deployment Image Servicing and Management tool Version: 10.0.17095.1000 Mounting image [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------------------------- ####Finished Selecting & Mounting Source Images################################ ------------------------------------------------------------------------------- =============================================================================== Press any key to continue . . . Source Image Debug Information: Code: =============================================================================== MSMG ToolKit - Debug Information =============================================================================== HOST_Arch=x86 SelectedSourceOS=w10 IsSourceSelected=Yes IsDialogsEnabled=Yes IsLogsEnabled=Yes ImageIndexNo=5 ImageName=Windows 10 Pro ImageDescription=Windows 10 Pro ImageArchitecture=x64 ImageBuild=16299 ImageVersion=10.0.16299 ImageServicePackBuild=15 ImageServicePackLevel=0 ImageEdition=Professional ImageFlag=Professional ImageInstallationType=Client ImageDefaultLanguage=es-ES ImageCount=6 =============================================================================== Press any key to continue . . .
Guys, Quick question about a little issue I've noticed in the last 2 or 3 builds that doesn't seem to affect the final outcome of the build I make, but still leaves me scratching my head. When I clean up the source images after integration, why do most of the big cleanups on the install.wim main indexes end like this?
Because there is not much to cleanup, iirc @abbodi1406 explained it to us, as long as the message "the operation completed succesfully" is shown, it's OK. It was something with api not responding fast enough to show the progress line up to 100%.
Author: Professional Education update fix also like Pro for Workstations 8.2 after line 14829 Code: :: Importing Registry Fix to Enable Integrating Windows Updates to Windows 10 Professional Education Edition. if "%ImageBuild%" equ "16299" if "%ImageEdition%" equ "ProfessionalEducation" ( call :MountImageRegistry "%InstallMount%\%%i" reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\Microsoft-Windows-ProfessionalEdition~31bf3856ad364e35~%PackageArchitecture%~~10.0.16299.15" /v "InstallClient" /t REG_SZ /d "DISM Package Manager Provider" /f >nul reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\Microsoft-Windows-ProfessionalEdition~31bf3856ad364e35~%PackageArchitecture%~~10.0.16299.15" /v "InstallName" /t REG_SZ /d "Microsoft-Windows-ProfessionalEdition~31bf3856ad364e35~%PackageArchitecture%~~10.0.16299.15.mum" /f >nul reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\Microsoft-Windows-ProfessionalEdition~31bf3856ad364e35~%PackageArchitecture%~~10.0.16299.15" /v "InstallLocation" /t REG_SZ /d "\\?\d:\rs2.bin.%PackageArchitecture%fre\csi\pkgs\\" /f >nul reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\Microsoft-Windows-ProfessionalEdition~31bf3856ad364e35~%PackageArchitecture%~~10.0.16299.15" /v "CurrentState" /t REG_DWORD /d "112" /f >nul reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\Microsoft-Windows-ProfessionalEdition~31bf3856ad364e35~%PackageArchitecture%~~10.0.16299.15" /v "SelfUpdate" /t REG_DWORD /d "0" /f >nul reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\Microsoft-Windows-ProfessionalEdition~31bf3856ad364e35~%PackageArchitecture%~~10.0.16299.15" /v "Visibility" /t REG_DWORD /d "1" /f >nul reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\Microsoft-Windows-ProfessionalEdition~31bf3856ad364e35~%PackageArchitecture%~~10.0.16299.15" /v "InstallTimeHigh" /t REG_DWORD /d "30649479" /f >nul reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\Microsoft-Windows-ProfessionalEdition~31bf3856ad364e35~%PackageArchitecture%~~10.0.16299.15" /v "InstallTimeLow" /t REG_DWORD /d "1431244152" /f >nul reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\Microsoft-Windows-ProfessionalEdition~31bf3856ad364e35~%PackageArchitecture%~~10.0.16299.15" /v "InstallUser" /t REG_SZ /d "S-1-5-18" /f >nul call :UnMountImageRegistry ) :: Importing Registry Fix to Enable Integrating Windows Updates to Windows 10Professional Education 'N' Edition. if "%ImageBuild%" equ "16299" if "%ImageEdition%" equ "ProfessionalEducationN" ( call :MountImageRegistry "%InstallMount%\%%i" reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\Microsoft-Windows-ProfessionalNEdition~31bf3856ad364e35~%PackageArchitecture%~~10.0.16299.15" /v "InstallClient" /t REG_SZ /d "DISM Package Manager Provider" /f >nul reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\Microsoft-Windows-ProfessionalNEdition~31bf3856ad364e35~%PackageArchitecture%~~10.0.16299.15" /v "InstallName" /t REG_SZ /d "Microsoft-Windows-ProfessionalNEdition~31bf3856ad364e35~%PackageArchitecture%~~10.0.16299.15.mum" /f >nul reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\Microsoft-Windows-ProfessionalNEdition~31bf3856ad364e35~%PackageArchitecture%~~10.0.16299.15" /v "InstallLocation" /t REG_SZ /d "\\?\d:\rs2.bin.%PackageArchitecture%fre\csi\pkgs\\" /f >nul reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\Microsoft-Windows-ProfessionalNEdition~31bf3856ad364e35~%PackageArchitecture%~~10.0.16299.15" /v "CurrentState" /t REG_DWORD /d "112" /f >nul reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\Microsoft-Windows-ProfessionalNEdition~31bf3856ad364e35~%PackageArchitecture%~~10.0.16299.15" /v "SelfUpdate" /t REG_DWORD /d "0" /f >nul reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\Microsoft-Windows-ProfessionalNEdition~31bf3856ad364e35~%PackageArchitecture%~~10.0.16299.15" /v "Visibility" /t REG_DWORD /d "1" /f >nul reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\Microsoft-Windows-ProfessionalNEdition~31bf3856ad364e35~%PackageArchitecture%~~10.0.16299.15" /v "InstallTimeHigh" /t REG_DWORD /d "30649479" /f >nul reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\Microsoft-Windows-ProfessionalNEdition~31bf3856ad364e35~%PackageArchitecture%~~10.0.16299.15" /v "InstallTimeLow" /t REG_DWORD /d "1431244152" /f >nul reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\Component Based Servicing\Packages\Microsoft-Windows-ProfessionalNEdition~31bf3856ad364e35~%PackageArchitecture%~~10.0.16299.15" /v "InstallUser" /t REG_SZ /d "S-1-5-18" /f >nul call :UnMountImageRegistry
MSMG 1. Add an option to hide the Insider Page from the Settings: [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\WindowsSelfHost\UI\Visibility] "HideInsiderPage"=dword:00000001 2. ToolKit 8.2, W10 Pro x64 en-us. Also error:
After running a few days, I can say that the chopped image works fine, but there are some glitches with the toolkit. Defender was supposed to be removed, but it is still very active. Also, other metro apps like "groove music" or something like that was also still present. The toolkit is unable to remove some apps and components on Windows 10 pro fall update, having followed the instructions to the letter. That may have to do something with being it a spanish language wim, but no great deal. On the bright side, performance is great, I couldn't really spot any difference as compared to LTSB 1607 even with some of the junk still present. Cheers.
If you had integrated/updated the CU later, then the Defender component files get restored partially with a Start Menu link. Will test with the es-ES image again and report back.
MSMG, ToolKit 8.2, W10 Pro VL 1709 x64 en-us. The Readme says: "Note: You may have to re-integrate Windows 10 Cumulative Update again to update Microsoft .NET Framework 3.5 Components or You can skip this and the Windows Update will offer a 50 MB update to update Microsoft .NET Framework 3.5 Components." ... but in the end we get the following error:
Do try removing the WindowsDefender, PeopleExperienceHost and SmartScreen and other components which uses after the integration of Microsoft .NET Framework 3.5 Components and let me know if it works.