The ToolKitHelper_Preview can be safely used with 10.0.22621.160, there are no changes in removed components.
Is this issue known when unmounting image? Spoiler Code: ------------------------------------------------------------------------------- Applying Changes & Un-Mounting [Install.wim, Index : 3] Image... ------------------------------------------------------------------------------- Deployment Image Servicing and Management tool Version: 10.0.22598.1 Saving image [==========================100.0%==========================] Unmounting image [==========================100.0%==========================] The operation completed successfully. ------------------------------------------------------------------------------- Optimizing Source [Install.wim] Image with Maximum Compression... ------------------------------------------------------------------------------- Using LZX compression with 16 threads Archiving file data: 7783 MiB of 7783 MiB (100%) done ERROR: "2" is not a valid image in "G:\Toolkit_v12.2\DVD\sources\install.wim"! Please specify a 1-based image index or image name. To list the images contained in the WIM archive, run wimlib-imagex.exe info "G:\Toolkit_v12.2\DVD\sources\install.wim" ERROR: Exiting with error code 18: Tried to select an image that does not exist in the WIM. The system cannot find the file specified. ERROR: "3" is not a valid image in "G:\Toolkit_v12.2\DVD\sources\install.wim"! Please specify a 1-based image index or image name. To list the images contained in the WIM archive, run wimlib-imagex.exe info "G:\Toolkit_v12.2\DVD\sources\install.wim" ERROR: Exiting with error code 18: Tried to select an image that does not exist in the WIM. The system cannot find the file specified. ------------------------------------------------------------------------------- ####Finished Applying & Saving Changes to Source Images######################## ------------------------------------------------------------------------------- =============================================================================== Press any key to continue . . . using latest posted Toolkit.cmd and ToolkitHelper.exe as of this post. WIM image loses all other indexes except 1. EDIT: @MSMG Found the issue... Code: if "%TrimEditions%" equ "Yes" ( for %%i in (%ImageIndexNo%) do ( rem call :ExportImageIndex "%InstallWim%", %%i, "%Temp%\rebuild.wim", "WIM", "No" echo. %WimlibImagex% export "%InstallWim%" %%i "%Temp%\rebuild.wim" --compress=LZX move /y "%Temp%\rebuild.wim" "%InstallWim%" >nul echo. ) ) The code above will replace the original WIM file in the 1st iteration and then attempt to extract index 2 in the 2nd iteration from the "new" WIM which now only has 1 index. You need to refactor this block to move the "move" command outside the for loop. EDIT2: After above fix... Spoiler Code: ------------------------------------------------------------------------------- Optimizing Source [Install.wim] Image with Maximum Compression... ------------------------------------------------------------------------------- Using LZX compression with 16 threads Archiving file data: 7783 MiB of 7783 MiB (100%) done Using LZX compression with 16 threads Archiving file data: 894 MiB of 894 MiB (100%) done Using LZX compression with 1 thread Archiving file data: 132 MiB of 132 MiB (100%) done ------------------------------------------------------------------------------- ####Finished Applying & Saving Changes to Source Images######################## -------------------------------------------------------------------------------
@MSMG, I have a curiosity ... It may be a curiosity for others too ... I always thought that Toolkithelper supported the Range of ServicePacksBuild between "1" and even the "last supported". Only recently that I noticed (The Commercial "&" charactere) in your comments that Toolkithelper supports only ServicePacksBuild "1" "&" just for the "last", when Toolkithelper was released. Why can't you support the range of those who have already been supported? Would the code size increase so much? Wouldn't it be possible to do analogously to what we do within the script, using geq leq gtr lss as statements? When I think you should have done this ... curiosity is also related to knowing about the problems that have occurred if you have done it. Thnks!
in the Apply menu when asked this question: "Do you want to trim unselected Image editions ?" answer "No" I changed the code to: Code: if errorlevel 2 set "TrimEditions=Yes" for: Code: if errorlevel 2 set "TrimEditions=No"
Please read again, I found the fix. I know answering "No" will skip the if-block. That's not what I intended to do in the first place.
Yes. Needed to move the "move" command line out of for loop. Code: if "%TrimEditions%" equ "Yes" ( for %%i in (%ImageIndexNo%) do ( rem call :ExportImageIndex "%InstallWim%", %%i, "%Temp%\rebuild.wim", "WIM", "No" echo. %WimlibImagex% export "%InstallWim%" %%i "%Temp%\rebuild.wim" --compress=LZX echo. ) move /y "%Temp%\rebuild.wim" "%InstallWim%" >nul )
Thanks, I'm going to upload it to google drive and pass it on to you. Additionally, what is the total weight of the MSMG because I get that they are like 48gigas
You can put the link here. About the amount of data I do not know for sure, but that was about it, when he made almost everything available, limited the 50GB of Mega. Now, there are few gigs. MSMG will probably put your link on this list or in pastebin file.
Hi, MSMG preview work great with 22621.105, big thanks. Edit : I have this window that pops up every time I start it.
Since the current ToolKitHelper removal data is manually processed and pre-added in the program, adding support for all update builds will increase the size and also when new components removals are added then it won't be supporting all previous updates.
Hi I´m trying for the last 30 minutes to download the "DebugTools_10.0.22621.tpk", but on Mediafire is all the time generating a new Download Link. If someone has the file, is it possible to upload to a different hoster? And please, which ToolkitHelper do I download? The normal or the Preview?
The ToolKitHelper_Preview.exe can be used to remove the components for 17763.3046, 18363.2274, 19044.1766 There are no changes in removed components, will check with 22000.739 and update. Edit: You can use it with even 22000.739 too.