1. zero cool root

    zero cool root MDL Senior Member

    Jun 17, 2011
    382
    161
    10
  2. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    Have uploaded a updated Toolkit.cmd script with support for Integrating Language Packs, Drivers, Windows Features, Custom Windows Features for Windows 11 Source OS. Can anyone test the script for Windows 7/8.1/10 and 11 and report back for any issues.

    Just want to remind that I have made changes to Toolkit packs folders with respect to adding support for Windows 11, do update your Packs folder to reflect the changes.

    Support for Windows 11 Component Removal will be added from next version, in fact it's already been present in the current version for Windows 11 v10.0.22000.1 but I have disabled it due to some bugs which I have fixed now for the next release.
     
  3. doffy90

    doffy90 MDL Novice

    Nov 9, 2015
    46
    5
    0
    I'm still on Windows 7 and get can't it to work. I get an error message: "Error: Failed to create a process.", when clicking start.cmd. I then tried toolkit.cmd which gets me as far as "extract from custom esd" then it crashes right after displaying all the indexes.
     
  4. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,748
    3,575
    60
    #20284 inTerActionVRI, Sep 6, 2021
    Last edited: Sep 6, 2021
    @MSMG,

    from
    Code:
    if "%SelectedSourceOS%" equ "w11" OSID=10
    
    to
    Code:
    if "%SelectedSourceOS%" equ "w10" OSID=10
    
    ------------------------------------------------------------------------
    and...
    from
    Code:
    if "%ImageVersion:~0,-6%" neq "10.0" set "ImageBuild=%ImageVersion:~4,4%"
    if "%ImageVersion:~0,-6%" equ "10.0" set "ImageBuild=%ImageVersion:~5,5%"
    
    to
    Code:
    if "%ImageVersion:~0,-6%" neq "10.0" if "%ImageVersion:~0,-6%" neq "11.0" set /A ImageBuild=%ImageVersion:~4,4%
    if "%ImageVersion%" neq "6.1.7601" if "%ImageVersion%" neq "6.3.9600" set /A ImageBuild=%ImageVersion:~5,5%
    
    or
    Code:
    if "%ImageVersion:~0,-6%" neq "10.0" if "%ImageVersion:~0,-6%" neq "11.0" (
       set /A ImageBuild=%ImageVersion:~4,4%
    ) else (
       set /A ImageBuild=%ImageVersion:~5,5%
    )
    
    ------------------------------------------------------------------------------------------
    from
    Code:
    if "%ImageVersion:~0,-6%" equ "10.0" (
       if "%ImageBuild%" leq "19045" set "SelectedSourceOS=w10"
       if "%ImageBuild%" geq "22000" set "SelectedSourceOS=w11"
    )
    
    to
    Code:
    if "%ImageVersion:~0,-6%" equ "10.0" (
       if "%ImageBuild%" leq "20348" (
           set "SelectedSourceOS=w10"
           set "OSID=10"
       )
       if "%ImageBuild%" geq "22000" (
           set "SelectedSourceOS=w11"
           set "OSID=11"
       )
    )
    
    And add this precautionary code to the official release of Windows 11 in October, aiming at that the version will be updated.
    Code:
    if "%ImageVersion:~0,-6%" equ "11.0" (
       set "SelectedSourceOS=w11"
       set "OSID=11"
    )
    
    Is there the possibility of the new components be available in previous editions of Windows 10 with the future cumulative updates?
    Or are these components will only be present in W11?
     
  5. ezgera

    ezgera MDL Novice

    Dec 25, 2019
    36
    2
    0
    couldnt find it, i have tried 3 versions and i cannot find any option to touch any of the windows 1709 ( no removal tol or injection )
    they told me that win1709 modification tools will be added in future versions of MSGM
    but i cant find any
     
  6. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,748
    3,575
    60
    all from
    set "InboxApp=XboxApp"
    to
    set "InboxApp=Xbox"

    Paint and Paint3D are problematic in inboxapps. Something related to the names of the license variables.
    Notepad is not on the menu, but is present in the code only in the application part.
     
  7. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    Thanks for the feedback and suggestions, have made the changes and will upload the updated script.

     
  8. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    Check in Archive folder in the Download link, I wish I could add the support for older versions only if I had good health and time.

     
  9. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    Corrected the issues, some apps integration for Windows 11 needs the license.xml which will be added once the MS releases the official Apps ISO.

     
  10. Tiger-1

    Tiger-1 MDL Guru

    Oct 18, 2014
    7,894
    10,734
    240
    Hello @MSMG I sincerely hope you are well because regardless of anything here in the MDL your health is fundamental and God will always be looking for you Master
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,748
    3,575
    60
    #20291 inTerActionVRI, Sep 7, 2021
    Last edited: Sep 7, 2021
    There are 2 parts with this code to be corrected that missing "/ f". Only the part of the alltweaks has been corrected.
    Code:
                  Reg add "HKLM\TK_SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v "TargetReleaseVersion" /t REG_DWORD /d "1" /f >nul 2>&1
                  if "%ImageBuild%" equ "17134" Reg add "HKLM\TK_SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v "TargetReleaseVersionInfo" /t REG_SZ /d "1803" /f >nul 2>&1
                  if "%ImageBuild%" equ "17763" Reg add "HKLM\TK_SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v "TargetReleaseVersionInfo" /t REG_SZ /d "1809" /f >nul 2>&1
                  if "%ImageBuild%" equ "18362" Reg add "HKLM\TK_SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v "TargetReleaseVersionInfo" /t REG_SZ /d "1903" /f >nul 2>&1
                  if "%ImageBuild%" equ "18363" Reg add "HKLM\TK_SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v "TargetReleaseVersionInfo" /t REG_SZ /d "1909" /f >nul 2>&1
                  if "%ImageBuild%" equ "19041" Reg add "HKLM\TK_SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v "TargetReleaseVersionInfo" /t REG_SZ /d "2004" /f >nul 2>&1
                  if "%ImageBuild%" equ "19042" Reg add "HKLM\TK_SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v "TargetReleaseVersionInfo" /t REG_SZ /d "2009" /f >nul 2>&1
                  if "%ImageBuild%" equ "19043" Reg add "HKLM\TK_SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v "TargetReleaseVersionInfo" /t REG_SZ /d "21H1" /f >nul 2>&1
                  if "%ImageBuild%" equ "19044" Reg add "HKLM\TK_SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v "TargetReleaseVersionInfo" /t REG_SZ /d "21H2" /f >nul 2>&1
                  if "%ImageBuild%" equ "19045" Reg add "HKLM\TK_SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v "TargetReleaseVersionInfo" /t REG_SZ /d "22H1" /f >nul 2>&1
                  if "%ImageBuild%" equ "20348" Reg add "HKLM\TK_SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v "TargetReleaseVersionInfo" /t REG_SZ /d "21H2" /f >nul 2>&1
                  if "%ImageBuild%" equ "22000" Reg add "HKLM\TK_SOFTWARE\Policies\Microsoft\Windows\WindowsUpdate" /v "TargetReleaseVersionInfo" /t REG_SZ /d "21H2" /f >nul 2>&1
    
    I think only here there is a need to keep "19044".
    You can replace almost all "19044" for "19045"
     
  12. graver.x

    graver.x MDL Senior Member

    Jan 18, 2020
    347
    484
    10
    #20292 graver.x, Sep 7, 2021
    Last edited: Sep 7, 2021
    Hi, @zero cool root!
    I perform this operation in NTLite in the final step (selecting a folder as the source: Toolkit\DVD).
    Mount boot.wim (2: Windows Setup), add a tweak using the Registry tab. Save image.
     
  13. doffy90

    doffy90 MDL Novice

    Nov 9, 2015
    46
    5
    0
    Is msmg toolkit compatible with win 10 ltsc?
     
  14. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    Yes Windows 10 LTSC v1809 is supported.

     
  15. doffy90

    doffy90 MDL Novice

    Nov 9, 2015
    46
    5
    0
    Thanks mate.
     
  16. graver.x

    graver.x MDL Senior Member

    Jan 18, 2020
    347
    484
    10
    #20297 graver.x, Sep 7, 2021
    Last edited: Sep 7, 2021
    Has MSMG added a setting: "BypassCPUCheck"=dword:00000001 ? :rolleyes: So far, he hasn't reported it.

    There is also Win 11 Boot And Upgrade FiX KiT, but as far as I understood, there was no "BypassCPUCheck"=dword:00000001 setting either.
     
  17. Yanta

    Yanta MDL Senior Member

    May 21, 2017
    477
    274
    10
    @MSMG What is the function of the Webp codec in Windows 10?
    I've been keeping it in my image, but I can't preview thumbnails and I can't open webp files with any Windows programs.
    I can get thumbnails using a 3rd party program like Icaros. I can open the images if I use a 3rd Party program like ImageGlass.
    So what is the webp package supposed to do?
     
  18. fch1993

    fch1993 MDL Senior Member

    Mar 14, 2020
    381
    273
    10
    #20299 fch1993, Sep 8, 2021
    Last edited: Sep 8, 2021
    @MSMG

    Bug happened when add Microsoft Edge to 32bit Windows 7 (At least Enterprise&Ultimate). Windows 7 64bit don't have such problem.

    Code:
    ===============================================================================
              MSMG ToolKit - Integrate Microsoft Edge Chromium Browser
    ===============================================================================
    
    -------------------------------------------------------------------------------
    ####Starting Integrating Microsoft Edge Chromium Browser#######################
    -------------------------------------------------------------------------------
    
        Image                    : Install.wim
        Image Index              : 1,2
        Image Architecture       : x86
        Image Version            : 6.1.7601.25685.1
    
    -------------------------------------------------------------------------------
    ####Integrating Microsoft Edge Chromium Browser################################
    -------------------------------------------------------------------------------
    
    ===========================[Install.wim, Index : 1]============================
    
    -------------------------------------------------------------------------------
    Integrating Windows Servicing Stack Update (SSU) (KB4490628) Package...
    -------------------------------------------------------------------------------
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22000.1
    
    Image Version: 6.1.7601.25652
    
    Processing 1 of 1 - Adding package Package_for_KB4490628~31bf3856ad364e35~x86~~6.1.1.2
    [==========================100.0%==========================]
    The operation completed successfully.
    
    -------------------------------------------------------------------------------
    Integrating Windows Servicing Stack Update (SSU) (KB4592510) Package...
    -------------------------------------------------------------------------------
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22000.1
    
    Image Version: 6.1.7601.25652
    
    Processing 1 of 1 - Adding package Package_for_KB5004378~31bf3856ad364e35~x86~~6.1.1.0
    [==========================100.0%==========================]
    The operation completed successfully.
    
    -------------------------------------------------------------------------------
    Integrating Windows SHA-2 Code Update (KB4474419) Package...
    -------------------------------------------------------------------------------
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22000.1
    
    Image Version: 6.1.7601.25652
    
    Processing 1 of 1 - Adding package Package_for_KB4474419~31bf3856ad364e35~x86~~6.1.3.2
    [===========================99.9%========================= ]
    The operation completed successfully.
    
    
    -------------------------------------------------------------------------------
    Apply Windows 7 Extended Security Update (ESU) Suppressor Patch...
    -------------------------------------------------------------------------------
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22000.1
    
    Applying image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    
    
    
    
    Which stacked in add chromium edge and not go on.

    Toolkit.cmd 2021/9/6 15:31
     
  19. 正义羊

    正义羊 MDL Senior Member

    Feb 21, 2016
    258
    152
    10
    @MSMG ,
    • For Windows 10 v1809/v1909/v2004/v20H2/v21H1/v2H2 Component removal use v11.7
    Not v2H2,Its v21H2.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...