1. graver.x

    graver.x MDL Senior Member

    Jan 18, 2020
    342
    476
    10
  2. SimonPetrus

    SimonPetrus MDL Novice

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

    MSMG MDL Developer

    Jul 15, 2011
    6,411
    15,487
    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.

     
  4. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,411
    15,487
    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.
     
  5. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,651
    3,398
    60
    #20348 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.
     
  6. 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!
     
  7. ARCIGA

    ARCIGA MDL Senior Member

    Mar 23, 2015
    290
    62
    10
    #20350 ARCIGA, Sep 12, 2021
    Last edited: Sep 12, 2021
    MSMG MDL Developer
    MSMG > Packs > VCRuntime > w10 -> "A File is Missing" VC_2019_x64.reg
     
  8. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,411
    15,487
    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.

     
  9. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,411
    15,487
    210
    Use the latest Toolkit.cmd from download link.

     
  10. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,411
    15,487
    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).
     
  11. 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.
     
  12. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,651
    3,398
    60
    #20355 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" (
    
     
  13. tefor

    tefor MDL Senior Member

    Apr 5, 2017
    307
    235
    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 ?
     
  14. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,651
    3,398
    60
    Only Toolkit.cmd was updated. ToolkitHelper not yet. For now only 22000.1 is supported.
     
  15. brsgrlr

    brsgrlr MDL Novice

    Mar 27, 2011
    16
    2
    0
    #20359 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.
     
  16. xlincn

    xlincn MDL Novice

    Nov 9, 2013
    45
    13
    0
    ToolkitHelper.exe Not currently supported win11