1. SimonPetrus

    SimonPetrus MDL Novice

    Dec 25, 2020
    16
    1
    0
    old screenshot. in use 11.7
     
  2. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    As said earlier, it will be difficult to keep updating the removal program for Insider's builds since every week there will be a new build released and it needs more changes to code.

    That's why even for the current supported builds to I'm updating the removal program for only patch Tuesday's update.

    Will see what can be done for supporting unsupported builds.

     
  3. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    To avoid confusion regarding Windows 11 Gaming App, I have decoupled the below components from Xbox removal for all supported Windows versions.

    GamingApp
    XboxGameOverlay
    XboxGamingOverlay
    XboxIdentityProvider
    XboxSpeechToTextOverlay
    XboxTCUI

    Like in ToolKitHelper even the Microsoft has split the Xbox into back-end and front-end components and named the front-end app as Gaming App.

    For Windows 11 Apps integration, you need to only integrate the Gaming App and not the XboxApp.
     
  4. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    #20324 inTerActionVRI, Sep 11, 2021
    Last edited: Sep 11, 2021
    After the vast change that was made by you, due to changes in Windows 11.
    I understand how I complicated things with the development of my menus, hehehehehe
    It was complicated to apply the new merge this time.

    But on that part of Xbox App on the unified menu, I did like this:
    if "%SelectedSourceOS%" equ "w10" echo. [31] Xbox Console Companion ^(Xbox App^)
    if "%SelectedSourceOS%" equ "w11" echo. [31] Gaming App ^(Xbox App^)

    Suggestion: Keep in the component description, in the menu, "Formely Know As" when there is only the renaming of some app. This until folks get accustomed to changes or perhaps permanently.

    I left aside alphabetic order. I am first putting the components common to all versions. For the components that have been removed, I left with the proper conditions to be displayed only where they are present. And for the most current versions, the new components were inserted to the end of the list.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. Chumbolito

    Chumbolito MDL Novice

    Feb 25, 2018
    1
    0
    0
    I'm new to MSMG and I'm confused about the Packs that are available to download.
    Aren't most of the packs already integrated in an official MS downloaded ISO? Are they then there for users who removed items for their custom ISO and who later decide to reintegrate them?
    On the other hand, I notice the VC Runtime that are not necessarily integrated in an original ISO...so that's why I'm confused.
    I'm not sure what might already be in the ISO and therefore not needed and what might be useful to have.
    Thanks!
     
  6. ARCIGA

    ARCIGA MDL Senior Member

    Mar 23, 2015
    309
    76
    10
    #20326 ARCIGA, Sep 12, 2021
    Last edited: Sep 12, 2021
    MSMG MDL Developer
    MSMG > Packs > VCRuntime > w10 -> "A File is Missing" VC_2019_x64.reg
     
  7. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    The Toolkit packs provides a repository for feature on demands pack, custom packs for integrating into installation image.

    Some features are present in only select editions and the Toolkit provides these packs for to be integrated into other editions.

    List me which features are already integrated in all editions of Windows.

     
  8. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    Use the latest Toolkit.cmd from download link.

     
  9. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    Have uploaded the updated Apps and dependency runtime files for Windows 10/11

    Also have uploaded the Windows 11 redesigned apps (Calculator, Photos, Snipping Tool, Microsoft Store).
     
  10. house3272

    house3272 MDL Novice

    Jul 8, 2017
    16
    4
    0
    Potentially very noobish question, but is there a list/wiki/doc anywhere of what the more obscure components are/their removal consequences?
    Most of them are verbose enough to be intuitive, but a few I've no idea and googling seems to not help.

    AsyncTextService - ??
    CapturePicker - part of the snipping feature?
    CallingShellApp - call app? does removal affect voip calls like through teams?
    SecureAssessmentBrowser - take test app?
    SkypeORTC - since skype is dead, is this just left over for skype itself, or framework/lib for all calls? again, would teams calls be affected?

    Trying to comment out RemovePkgsList like:
    Code:
    #camera barcode scanner preview?
    CBSPreview
    
    #eye control app?
    ECApp
    
    #Your Phone app?
    CommunicationsApps
    so future me doesn't have to re-search what some of them are.
     
  11. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    #20331 inTerActionVRI, Sep 12, 2021
    Last edited: Sep 13, 2021
    @MSMG,

    from
    [/code]
    :: Setting Microsoft Edge Chromium Browser Pack Path
    if "%SelectedSourceOS%" neq "w10" set "EdgeChromium=%EdgeChromium%\%SelectedSourceOS%"
    [/code]
    to
    [/code]
    :: Setting Microsoft Edge Chromium Browser Pack Path
    if "%SelectedSourceOS%" neq "w10" if "%SelectedSourceOS%" neq "w11" set "EdgeChromium=%EdgeChromium%\%SelectedSourceOS%"
    [/code]

    There are some if "%SelectedSourceOS%" neq "w10" (
    that should be replaced for if "%SelectedSourceOS%" neq "w10" if "%SelectedSourceOS%" neq "w11" (
    Like in IntLanguagePacks, IntPowerShell7, etc... No?


    The menu for geq 18362 leq 18363...
    Code:
    :: Remove Windows 10 v1903/v1909 Client Edition System Apps Menu
    if "%SelectedSourceOS%" equ "w10" if "%ImageBuild%" geq "18362" if "%ImageBuild%" leq "18363" (
    
    is conflicting with this:
    Code:
    :: Remove Windows 10 v1809/v1903/v1909/v2004/v20H2/v21H1/v21H2, Windows 11 v21H1 Client System Apps Menu
    if "%SelectedSourceOS%" neq "w7" if "%SelectedSourceOS%" neq "w81" if "%ImageBuild%" geq "17763" if "%ImageBuild%" leq "22000" (
    
    So, could be:
    Code:
    :: Remove Windows 10 v2004/v20H2/v21H1/v21H2, Windows 11 v21H1 Client System Apps Menu
    if "%SelectedSourceOS%" neq "w7" if "%SelectedSourceOS%" neq "w81" if "%ImageBuild%" geq "19041" (
    
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. tefor

    tefor MDL Senior Member

    Apr 5, 2017
    317
    240
    10
    I could not remove packages with toolkit using package list from 22000.184 although i used latest toolkit.cmd uploaded yesterday by MSMG . It says it does not support
    What is wrong with it ?
     
  13. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    Only Toolkit.cmd was updated. ToolkitHelper not yet. For now only 22000.1 is supported.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. brsgrlr

    brsgrlr MDL Novice

    Mar 27, 2011
    16
    2
    0
    #20335 brsgrlr, Sep 13, 2021
    Last edited: Sep 14, 2021
    I get an error while trying to remove components.

    upload_2021-9-13_19-34-35.png

    edit: ToolkitHelper.exe can't access to certain windows files inside the Mount folder.
     
  15. xlincn

    xlincn MDL Junior Member

    Nov 9, 2013
    59
    18
    0
    ToolkitHelper.exe Not currently supported win11
     
  16. maka213

    maka213 MDL Novice

    Aug 24, 2012
    41
    12
    0
    He's clearly trying to modify a Windows 10 iso, check the build numbers. Apparently the Windows 11 pre-release has taken priority over the latest stable Windows 10 ISO's.
     
  17. brunosso

    brunosso MDL Novice

    Sep 18, 2015
    7
    0
    0
    I have successfully updated a w10 LTSC 17763 iso to the actual build 2145. Integrating only net 4.8 via package downloaded from mega and VC++.
    When i try to install the ISO is correct, the setup run perfectly until the end, and when i try to search for updates, the OS find this missing updates:
    - KB890830
    - KB2267602 (i think using the cab from user steven4554 is enough)
    - KB5005568
    - KB5004870

    Is possible to integrate this updates? Wich metod between Updates folder or WHD folder?

    Thanks