1. graver.x

    graver.x MDL Senior Member

    Jan 18, 2020
    347
    484
    10
    #20441 graver.x, Sep 22, 2021
    Last edited: Sep 22, 2021
  2. graver.x

    graver.x MDL Senior Member

    Jan 18, 2020
    347
    484
    10
    There is no ManualSetup component in the RemovePkgsList_W11_10.0.22000.txt template. Is it possible to add it there?
     
  3. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    Yes you can add it, just forgot to add it.

     
  4. roedel

    roedel MDL Junior Member

    Jun 3, 2010
    81
    57
    0
    Or use MicrosoftWindows.Client.WebExperience in RemoveAppsList.txt

    Works for me.
     
  5. graver.x

    graver.x MDL Senior Member

    Jan 18, 2020
    347
    484
    10
    #20446 graver.x, Sep 22, 2021
    Last edited: Sep 22, 2021
    Okay. While you are working on that, I will remove the component using RemoveAppsList.txt. This method works, I have already removed Apps (including Widgets) in previous builds of Win 11, working with Toolkit v11.7.

    I paused work in the Toolkit at this point and was waiting for your response. I think I can proceed with this image by simply ignoring this error. (I'd hate to have to redo it all over again). I'll give it a shot.

    Upd.: The operation completed successfully. ;)
    Code:
    ===============================================================================
              MSMG ToolKit - Remove Windows Apps Using Apps List
    ===============================================================================
    
    -------------------------------------------------------------------------------
    ####Starting Remove Windows Apps Using Apps List###############################
    -------------------------------------------------------------------------------
    
    
        Image                    : Install.wim
        Image Index              : 1
        Image Architecture       : x64
        Image Version            : 10.0.22000.194.0
    
    -------------------------------------------------------------------------------
    ####Removing Windows Apps Using Apps List######################################
    -------------------------------------------------------------------------------
    
    ===========================[Install.wim, Index : 1]============================
    
    -------------------------------------------------------------------------------
    Removing MicrosoftWindows.Client.WebExperience Provisioned Appx Package...
    -------------------------------------------------------------------------------
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22000.1
    
    Image Version: 10.0.22000.194
    
    The operation completed successfully.
    
    -------------------------------------------------------------------------------
    ####Finished Removing Windows Apps Using Apps List#############################
    -------------------------------------------------------------------------------
    
    ===============================================================================
    
    Для продолжения нажмите любую клавишу . . .
    

    And I also created a new empty RemovePkgsList.txt and added ManualSetup component there to complete the image successfully.
    Code:
    ===============================================================================
            MSMG ToolKit - Remove Windows Components Using Package List
    ===============================================================================
    
    -------------------------------------------------------------------------------
    ####Starting Removing Windows Components Using Package List####################
    -------------------------------------------------------------------------------
    
        Image                    : Install.wim
        Image Index              : 1
        Image Architecture       : x64
        Image Version            : 10.0.22000.194.0
    
    -------------------------------------------------------------------------------
    ####Removing Windows Components Using Package List#############################
    -------------------------------------------------------------------------------
    
    
    ===========================[Install.wim, Index : 1]============================
    
    MSMG ToolKit Commandline Helper
    Version: 1.0.5184.0
    
    Image Version: 10.0.22000.194
    
    Component : ManualSetup
    
    Removing Package files...
    
    The operation completed successfully.
    
    -------------------------------------------------------------------------------
    ####Finished Removing Windows Components Using Package List####################
    -------------------------------------------------------------------------------
    
    ===============================================================================
    
    Для продолжения нажмите любую клавишу . . .
    
    
     
  6. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    Yes but it uses DISM.exe to remove the App not the ToolKitHelper.exe

     
  7. ck3a19

    ck3a19 MDL Novice

    May 20, 2016
    20
    1
    0
    Please share the download link for me...
    Code:
    [/ CODE]
    windows10.0-kb5005635-x64.cab
    windows10.0-kb5005635-x64.psf
    Windows10.0-KB5004342-x64-NDP48.cab
    windows10.0-kb5005662-x64.cab
    ssu-22000.190-x64.cab
    windows10.0-kb5006587-x64.cab
    windows10.0-kb5004567-x64.cab
    [/ QUOTE]
     
  8. graver.x

    graver.x MDL Senior Member

    Jan 18, 2020
    347
    484
    10
  9. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,748
    3,575
    60
    The entire session: RemoveWindowsManualSetup, is not present.
    Code:
    ::-------------------------------------------------------------------------------------------
    :: Function to Remove Windows Manual Setup Feature
    ::-------------------------------------------------------------------------------------------
    :RemoveWindowsManualSetup
    
    Was it removed for some special reason?

    That part is missing too.
    Code:
    if "%C_ManualSetup%" equ "-" call :RemoveWindowsManualSetup
    
    echo.-------------------------------------------------------------------------------
    echo.####Finished Removing Windows Components#######################################
    echo.-------------------------------------------------------------------------------
    
     
  10. 正义羊

    正义羊 MDL Senior Member

    Feb 21, 2016
    258
    152
    10
    @MSMG ,
    In 11.8 line 8994:
    Code:
    if "%InboxApp%" equ "OfficeHub" call :AddProvisionedAppxPackage "%InstallMount%\%%i", "My Office", "%OfficeHub_Appx%", "%VCLibsUWPDesktop14_Appx% VCLibs14_Appx%", "%OfficeHub_License%"
    it should be:
    Code:
    if "%InboxApp%" equ "OfficeHub" call :AddProvisionedAppxPackage "%InstallMount%\%%i", "My Office", "%OfficeHub_Appx%", "%VCLibsUWPDesktop14_Appx%", "%VCLibs14_Appx%", "%OfficeHub_License%"
    where the
    "%VCLibsUWPDesktop14_Appx% VCLibs14_Appx%"
    maybe
    "%VCLibsUWPDesktop14_Appx%", "%VCLibs14_Appx%"

    When I make it localization, I find it.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  11. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    Fixed it, It should be like below

    Code:
    "%VCLibsUWPDesktop14_Appx% %VCLibs14_Appx%"
    
     
  12. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    As said earlier the code for RemoveWindowsManualSetup has been moved to ToolkitHelper.exe

     
  13. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,748
    3,575
    60
    I thought I had read something, but I looked for where you wrote and did not find it.

    Understood. Thnks!
     
  14. graver.x

    graver.x MDL Senior Member

    Jan 18, 2020
    347
    484
    10
  15. geepnozeex

    geepnozeex MDL Junior Member

    Oct 21, 2014
    81
    79
    0
    Hello.
    I am looking powershell command to remove ContentDeliveryManager from a mounted image.
     
  16. JLT2000

    JLT2000 MDL Junior Member

    Nov 3, 2020
    68
    20
    0
    #20457 JLT2000, Sep 23, 2021
    Last edited: Sep 23, 2021
    HI MSMG

    I want to make an Win10 19044.1237 image using 19041 uup

    Is this the latest available updates i can use

    ssu-19041.1220-x64
    windows10.0-kb5000983-x64
    windows10.0-kb5003791-x64
    windows10.0-kb5004331-x64-ndp48
    windows10.0-kb5005565-x64
    windows10.0-kb5003716-x64
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  17. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    Code:
    Get-AppxPackage -allusers Microsoft.Windows.ContentDeliveryManager | Remove-AppxPackage
     
  18. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    Code:
    windows10.0-kb5003791-x64 (Enablement)
    windows10.0-kb5005565-x64 (Cumulative)
    windows10.0-kb5004393-x64 (Windows Experience Feature Pack)
    windows10.0-kb5005714-x64 (DU for Sources)
    SSU-19041.1220-x64 (Servicing Stack)
    windows10.0-kb5005645-x64 (Safe OS)
    windows10.0-kb5004331-x64 (Net Cumulative)