1. bala1

    bala1 MDL Member

    May 2, 2015
    179
    150
    10
    I've already applied your modification to Toolkit.cmd. Thanks
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  2. bala1

    bala1 MDL Member

    May 2, 2015
    179
    150
    10
    #22802 bala1, Jun 6, 2022
    Last edited: Jun 6, 2022
    Sensational. Excellent modifications and optimizations. Congratulations

    Stays like this:?

    Code:
    echo.####Removing Windows Components Using Package List#############################
    echo.-------------------------------------------------------------------------------
    
    for /l %%i in (1, 1, %ImageCount%) do (
        if exist "%InstallMount%\%%i" (
            echo.
            if not %%i gtr 9 echo.===========================[Install.wim, Index : %%i]============================
            if %%i gtr 9 echo.==========================[Install.wim, Index : %%i]============================
    
           if "%RemovalMethod%" equ "DISM" (
               for /f "eol=# tokens=*" %%z in ('type "%RemovePkgsList_DISM%" 2^>nul') do (
                   call :RemoveLockedPackage "%InstallMount%\%%i", %%z, %%z
               )
           )
    
           if "%RemovalMethod%" equ "ToolkitHelper" (
               set Components=
               for /f "eol=# tokens=*" %%z in ('type "%RemovePkgsList%" 2^>nul') do (
                   set "Components=!Components!,%%z"
               )
               echo.
               echo.
               %ToolKitHelper% "%InstallMount%\%%i" "!Components!"
               set Components=
            )
        )
    )
    
    echo.-------------------------------------------------------------------------------
    echo.####Finished Removing Windows Components Using Package List####################
    echo.-------------------------------------------------------------------------------
    
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. Bira

    Bira MDL Senior Member

    Oct 4, 2017
    293
    180
    10
    Code:
    set "Componentes=!Componentes!,%%z"
    set "Componentes=!Componentes:~1!"
    echo.!Componentes!
    
    set "Componentes=!Componentes! %%z"
    echo.!Componentes!
    
    ?
     
  4. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,748
    3,575
    60
    @Bira,
    That way, there is still a blank space at the beginning.
    Code:
    set "Componentes=!Componentes! %%z"
    echo.!Componentes!
    
    So I would still need this, only for the aesthetics of the output:
    Code:
    set "Components=!Components:~1!"
    

    Yes.
    But I added the line that Bira reminded me.
    Edited, in the previous post.
     
  5. Bira

    Bira MDL Senior Member

    Oct 4, 2017
    293
    180
    10
    #22805 Bira, Jun 6, 2022
    Last edited: Jun 7, 2022
    relax that even with this space it does, oh it can be; , or spaces in the loop or not, but rather leave it with ~1 to break the ;, or spaces
     
  6. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,748
    3,575
    60
    Yes.

    It is something aesthetic for the output, because in "for" command and some other commands, the compiler will interpret, spaces, commas, semicolon as space.
    But also, in this case, the space will be ignored, so inserting this line is really for aesthetics.
     
  7. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,748
    3,575
    60
    @MSMG,

    from:
    Code:
    %WimlibImagex% export "%BootWim%" all "%Temp%\rebuild.wim" --compress=LZX
    
    to:
    Code:
    %WimlibImagex% export "%BootWim%" all "%Temp%\rebuild.wim" --compress=LZX --boot
    

    or the optimize command:
    Code:
    %WimlibImagex% optimize "%BootWim%"
    
     
  8. bala1

    bala1 MDL Member

    May 2, 2015
    179
    150
    10
    I could replace the whole code so I can check how it will look, I'm lost...
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  9. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,614
    210
    MicrosoftWindows.Client.Core_cw5n1h2txyewy related to

    Start Menu
    Taskbar
    Snap Layout
    File Explorer Extensions
    System Tray

    Kind of Windows feature experience pack.
     
  10. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,614
    210
    Support for Integrating .NET Core 3.1 will be available from next version.
     
  11. sergey130270

    sergey130270 MDL Senior Member

    May 15, 2014
    286
    346
    10
  12. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,748
    3,575
    60
    The case I reported was when exporting 10 skus, index by index, straight to ESD with below Command.
    %WimlibImagex% export "%InstallWim%" %%i "%InstallEsd%" --compress=LZMS --solid

    That's why I implemented ChosenCount.
    If ChosenCount is equal to ImageCount the export process is direct.
    But if ChosenCount is smaller than ImageCount there comes the use of the TrimEditions.
    If TrimEditions is activated you have to export everything to install.wim and then convert to ESD, so the process rolls well.
    If the trim is deactivated, simply convert to ESD directly. I believe you don't even have to do the command to optimize the Wim. I believe this happens in conversion.

    if "%TrimEditions%" equ "No" (
    rem call :ExportImage "%InstallWim%", "%Temp%\rebuild.wim", "WIM", "No"
    echo.
    %WimlibImagex% optimize "%InstallWim%"
    echo.
    )

    so in Custom Toolkit:
    Code:
    :: Exporting Source Image to ESD Image
    if !ChosenCount! lss !ImageCount! (
       for %%i in (!ImageIndexNo!) do (
           rem call :ExportImageIndex "%InstallWim%", %%i, "%InstallEsd%", "ESD", "No"
           echo.
           %WimlibImagex% export "%InstallWim%" %%i "%_TMP%\install.wim" --compress=LZX
           echo.
       )
    )
    :: Move and Replace Source "install.wim" for New "install.wim" Image File
    if exist "%_TMP%\install.wim" move /y "%_TMP%\install.wim" "%InstallWim%" >nul
    
    rem call :ExportImage "%InstallWim%", "%InstallEsd%", "ESD", "No"
    echo.
    %WimlibImagex% export "%InstallWim%" all "%InstallEsd%" --compress=LZMS:100 --solid
    echo.
    
    :: Deleting Source Image File
    if exist "%InstallEsd%" call :RemoveFile "%InstallWim%"
    
     
  13. bala1

    bala1 MDL Member

    May 2, 2015
    179
    150
    10
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. KleineZiege

    KleineZiege MDL Expert

    Dec 11, 2018
    1,947
    2,193
    60
  15. sebasthian.ike

    sebasthian.ike MDL Novice

    Feb 1, 2022
    21
    1
    0
    Where can you get a list of all these packages? Dism /get-packages doesn't seem to list everything