1. 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
     
  2. mhussain

    mhussain MDL Senior Member

    Oct 1, 2012
    368
    144
    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?
     
  3. 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.
     
  4. Kruton

    Kruton MDL Novice

    Sep 9, 2017
    23
    6
    0
    I remove Parental Controls and WSA works (unless something recently changed).
     
  5. 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?
     
  6. mhussain

    mhussain MDL Senior Member

    Oct 1, 2012
    368
    144
    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
     
  7. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,748
    3,575
    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.
     
  8. 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.
     
  9. 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.
     
  10. Penguoon

    Penguoon MDL Novice

    Dec 22, 2023
    10
    4
    0
    Hi, Windows updates often reinstall removed components, is there a way to remove components on an installed system using MSMG toolkit?

    Also, does MSMG toolkit remove all telemetry and spyware?
     
  11. Jingzin

    Jingzin MDL Addicted

    Nov 10, 2021
    666
    532
    30
    if you update from 22h2 to 23h2 then some of the ms apps get reinstalled like for example edge if you removed it. if youre on 22h2 and just install some minor update then nothing will get reinstalled.

    you can use msmg toolkit to remove most telemetry and spyware surely not everything as even settings app sends data to ms.

    you cant use msmg toolkit to remove apps from installed os only works against iso to remove things from installed os use dism ps and or bloatynosey you can find it on github and many other similar tools.

    best way to do it is to remove everything before you install OS also disable updates, that's how i always do. removing apps and services from installed OS from one way to other causes issues interruptions and event viewer errors
     
  12. MrNico98

    MrNico98 MDL Junior Member

    May 9, 2023
    56
    7
    0
    hi! upload_2023-12-22_19-36-53.png

    DisableFeatureslist is empty
    upload_2023-12-22_19-37-53.png

    How i remove a list if is empty?
     

    Attached Files:

  13. Jingzin

    Jingzin MDL Addicted

    Nov 10, 2021
    666
    532
    30
    smiled a bit for a sec. well yeah how do you remove features if the list is empty. Well list exists for you to add packages features apps services you want to remove if you want to use list.

    you can use dism to get packages and features from an offline or online wim. you can also use dism++ to mount wim youre playing with and get names of features packages on wim youre playing with. Copy names paste them to the features list you want to remove, or you likely can do that even within toolkit itself never did that myself.
     
  14. Hello_NSA

    Hello_NSA MDL Novice

    Dec 24, 2023
    1
    0
    0
    In theory, could you use this tool to integrate the 22h2 update into LTSC?