1. Jingzin

    Jingzin MDL Addicted

    Nov 10, 2021
    666
    536
    30
    #26661 Jingzin, Dec 7, 2023
    Last edited: Dec 7, 2023
  2. JeepWillys58

    JeepWillys58 MDL Addicted

    Nov 6, 2010
    608
    385
    30
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  3. Yanta

    Yanta MDL Senior Member

    May 21, 2017
    491
    284
    10
    Is it possible to add a setupcomplete.cmd to C:\windows\setup\scripts with the toolkit?
     
  4. gesla

    gesla MDL Novice

    Nov 2, 2017
    26
    6
    0
    #26664 gesla, Dec 8, 2023
    Last edited: Dec 10, 2023
    Does anyone know what detail components that WSA needs? WSA can't start when I remove some components.
    Windows Subsystem for Android

    Update:after test many times,don't remove the components below:
    System - Projected File System(ProjFS)
    System Apps - Parental Controls

    @MSMG Can you note it under this two components? Thank you!
     
  5. sakatgg

    sakatgg MDL Junior Member

    Jun 18, 2020
    66
    40
    0
    #26665 sakatgg, Dec 10, 2023
    Last edited: Dec 10, 2023
    For WSA, do not delete

    Remove System Apps - Parental Controls

    WSA also uses some of the functions of Hyper-V

    Copy the file to the folder corresponding to the version, example
    Toolkit_v13.6\Custom\Files\w10\x64\Windows\Setup\Scripts\SetupComplete.cmd
    Complete the integration
    [2] Integrate
    [5] Windows Custom Features -
    [E] Custom System Files

    Do the same with firstlogon.cmd
     
  6. dead0

    dead0 MDL Junior Member

    Jan 15, 2010
    68
    17
    0
    it seems after win10 build 1809, any package removal with dism breaks installing updates. i normally use the server builds as it allows to remove more packages via dism. server 2019 was the last build where dism package removal worked without any issues when installing cumulative/security updates. with server 2022, dism package removal breaks updates due to missing files
     
  7. kozalyw

    kozalyw MDL Novice

    May 27, 2021
    12
    2
    0
    i find some newer win11 22h2 version needed to be compatiple with toolkit 13.7 or newer version.i will wait for them patiently and hope the next one is better
     
  8. OpenSourceGhost

    OpenSourceGhost MDL Member

    Feb 14, 2022
    170
    24
    10
    Does anyone know how to remove the following 2 components with DISM commands:
    1. New BingNews that Microsoft places into "Windows\InboxApps" directory starting with build 22631.2787 (or 22631.2792)
    2. Sleep Study
     
  9. mhussain

    mhussain MDL Senior Member

    Oct 1, 2012
    384
    161
    10
    is this a privisioned app package?
    "Microsoft.BingSearch_8wekyb3d8bbwe".
    why not use dism tools?
    gui to dism which can be found on this site?
     
  10. OpenSourceGhost

    OpenSourceGhost MDL Member

    Feb 14, 2022
    170
    24
    10
    No, it is not and DISM tools do not see it as a provisioned package. It is the new type of MSIX bloatware now placed in "Windows\InboxApps" along with other MSIX packages, such as FlipGrid PWA and Outlook PWA.
     
  11. Kruton

    Kruton MDL Novice

    Sep 9, 2017
    23
    6
    0
    I remove Parental Controls and WSA works (unless something recently changed).
     
  12. MrNico98

    MrNico98 MDL Junior Member

    May 9, 2023
    56
    7
    0
    echo.
    echo.===============================================================================
    echo.^| Index ^| Arch ^| Name
    echo.===============================================================================
    for /f "tokens=2 delims=: " %%a in ('dism /Get-WimInfo /WimFile:"C:\Users\Nico\Desktop\WIMToolkit\DVD\sources\install.wim" ^| findstr Index') do (
    for /f "tokens=2 delims=: " %%b in ('dism /Get-WimInfo /WimFile:"C:\Users\Nico\Desktop\WIMToolkit\DVD\sources\install.wim" /Index:%%a ^| findstr /i Architecture') do (
    for /f "tokens=* delims=:" %%c in ('dism /Get-WimInfo /WimFile:"C:\Users\Nico\Desktop\WIMToolkit\DVD\sources\install.wim" /Index:%%a ^| findstr /i Name') do (
    set "Name=%%c"
    if %%a equ 1 echo.^| %%a ^| %%b ^| !Name! if %%a gtr 1
    if %%a leq 9 echo.^| %%a ^| %%b ^| !Name!
    if %%a gtr 9 echo.^| %%a ^| %%b ^| !Name!
    )
    )
    )
    set /p index="Enter an index number: "

    not work on Windows11 but on windows 10 yes...why? How I can correct?
     
  13. mhussain

    mhussain MDL Senior Member

    Oct 1, 2012
    384
    161
    10
    hi,
    @MSMG

    would it be possible to make component removal more granuler?
    regarding the folowing app?
    MicrosoftWindows.Client.CBS_cw5n1h2txyewy
    it would be great if the folowing components could be removed individually?
    if not all of them then the folowing ones.
    WindowsBackupClient.exe
    installed after the very latest cu was installed.
    TextInputHost.exe
    ScreenClippingHost.exe
    IrisServiceProduct.exe

    the rest are what i've found while browsing the fs.


    RulesEngineProduct.exe
    AccountsServiceProduct.exe

    thank you for your considderation,
    the main app is the windows backup client.
    Majid
     
  14. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    Code:
    set "ImageInfo=%Temp%\ImageInfo.txt"
    
    echo.
    (
        echo.===============================================================================
        echo.^| Index ^| Arch  ^| Name
        echo.===============================================================================
    )>%ImageInfo%
    
    for /f "tokens=2 delims=: " %%a in ('dism /English /Get-WimInfo /WimFile:"C:\Users\Nico\Desktop\WIMToolkit\DVD\sources\install.wim" ^| findstr /i "Index"') do (
        for /f "tokens=2 delims=: " %%b in ('dism /English /Get-WimInfo /WimFile:"C:\Users\Nico\Desktop\WIMToolkit\DVD\sources\install.wim" /Index:%%a ^| findstr /i "Architecture"') do (
            for /f "tokens=* delims=:" %%c in ('dism /English /Get-WimInfo /WimFile:"C:\Users\Nico\Desktop\WIMToolkit\DVD\sources\install.wim" /Index:%%a ^| findstr /i "Name"') do (
                if "%%~b" neq "amd64" if "%%~b" neq "arm64" (
                    if %%a leq 9               echo.^|   %%a   ^|  %%b  ^| %%c
                    if %%a gtr 9 if %%a leq 99 echo.^|  %%a   ^|  %%b  ^| %%c
                    if %%a gtr 99              echo.^|  %%a  ^|  %%b  ^| %%c
                )
                if "%%~b" neq "x86" if "%%~b" neq "x64" if "%%~b" neq "arm" (
                    if %%a leq 9               echo.^|   %%a   ^| %%b ^| %%c
                    if %%a gtr 9 if %%a leq 99 echo.^|  %%a   ^| %%b ^| %%c
                    if %%a gtr 99              echo.^|  %%a  ^| %%b ^| %%c
                )
            )>>%ImageInfo%
        )
    )
    
    type "%ImageInfo%"
    
    
    As you can see I have added /English.
    This will work in wherever UIlanguage system you use.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  15. Gibral

    Gibral MDL Junior Member

    Jan 11, 2023
    92
    3
    0
    What is the name of the software to download Windows iso? I want to download 23H2 V2, the first version of V2, the last one on the Microsoft website seemed to have some lag in some online games.
     
  16. sebasthian.ike

    sebasthian.ike MDL Novice

    Feb 1, 2022
    21
    1
    0
    What do tweaks regarding windows defender, smart screen and windows update In "Customize" > "Apply Tweaks" do if you remove these packages via "Remove Windows Components"? Do those tweaks become redundant?

    Another thing I have a problem with is "Microsoft-Windows-LanguageFeatures-Basic-en-us-Package" apparently being a permanent package? Removing it via "DISM Method" gives me an error, even though it's an "OnDemand Pack" and not even a Language Pack. I don't think it was like that in much older versions of the toolkit.