1. Feartamixg

    Feartamixg MDL Addicted

    May 15, 2016
    786
    631
    30
  2. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    Windows Web Experience Pack - News and Interests Widgets App
     
  3. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    The ToolKitHelper_Preview can be safely used with 10.0.22621.160, there are no changes in removed components.
     
  4. kovadimka

    kovadimka MDL Novice

    Mar 19, 2020
    40
    12
    0
    It was left untouched.
     
  5. ashish.k

    ashish.k MDL Senior Member

    Dec 27, 2014
    303
    136
    10
    #22905 ashish.k, Jun 14, 2022
    Last edited: Jun 14, 2022
    Is this issue known when unmounting image?

    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...
    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########################
    -------------------------------------------------------------------------------
    
    
    
     
  6. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    @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!
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. bala1

    bala1 MDL Member

    May 2, 2015
    179
    150
    10
    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"
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  8. ashish.k

    ashish.k MDL Senior Member

    Dec 27, 2014
    303
    136
    10
    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.
     
  9. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    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
    )
    
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  10. bala1

    bala1 MDL Member

    May 2, 2015
    179
    150
    10
    OK sorry
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. Feartamixg

    Feartamixg MDL Addicted

    May 15, 2016
    786
    631
    30
    My 19044.1766 and 22000.739 images have been created and ready for v12.3. :weight_lift:
     
  12. ashish.k

    ashish.k MDL Senior Member

    Dec 27, 2014
    303
    136
    10
    No need to apologize. You provided a workaround but I was looking for a solution, that's all.
     
  13. latinserver

    latinserver MDL Novice

    May 1, 2014
    10
    1
    0
    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
     
  14. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    #22914 inTerActionVRI, Jun 14, 2022
    Last edited: Jun 15, 2022
    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.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  15. Zanza-kun

    Zanza-kun MDL Junior Member

    May 28, 2012
    87
    15
    0
    #22915 Zanza-kun, Jun 15, 2022
    Last edited: Jun 15, 2022
    Hi, MSMG preview work great with 22621.105, big thanks.

    Edit : I have this window that pops up every time I start it.
     

    Attached Files:

  16. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    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.
     
  17. ultimate_live

    ultimate_live MDL Expert

    Mar 15, 2011
    1,021
    671
    60
    #22917 ultimate_live, Jun 15, 2022
    Last edited: Jun 15, 2022
    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?
     
  18. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    #22918 MSMG, Jun 15, 2022
    Last edited: Jun 16, 2022
    (OP)
    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.
     
  19. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    Do post the remove component list.
     
  20. Dark Vador

    Dark Vador X Æ A-12

    Feb 2, 2011
    4,828
    7,137
    150
    @MSMG what you plan to do with the -
    long path problem. its annoying :(
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...