1. MIMMO61

    MIMMO61 MDL Senior Member

    Aug 19, 2009
    379
    108
    10
  2. MIMMO61

    MIMMO61 MDL Senior Member

    Aug 19, 2009
    379
    108
    10
    #21702 MIMMO61, Nov 30, 2021
    Last edited: Nov 30, 2021
    I inserted the script in Runonce mode inside the ISO, made tests on a virtual machine. After a time of time reappears
     
  3. graver.x

    graver.x MDL Senior Member

    Jan 18, 2020
    349
    486
    10
    Does removing the ContentDeliveryManager component from the system help in this case?

    I use IoT Enterprise, + remove ContentDeliveryManager.

    And I never see what this Teams, or other applications present in the Start menu as shortcuts to install them the first time I connect to the internet.
     
  4. 正义羊

    正义羊 MDL Senior Member

    Feb 21, 2016
    260
    160
    10
    OK,I understand it

    我明白了。
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. MIMMO61

    MIMMO61 MDL Senior Member

    Aug 19, 2009
    379
    108
    10
    It has been done in the removal of the apps
    Code:
    Component : ContentDeliveryManager
    
    Removing Package files...
    Modifying Package files...
    Loading Image Registry...
    Modifying Package Registry...
    Unloading Image Registry...
    
    The operation completed successfully.
    
     
  6. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    Fixed the version info and re-uploaded the Toolkit.
     
  7. Feartamixg

    Feartamixg MDL Addicted

    May 15, 2016
    786
    631
    30
    I see that v11.10 has ToolKitHelper.exe v1.0.5724 with a timestamp of 26/11/2021 at 12:20.

    v12.00 has ToolKitHelper.exe v1.0.5616 with a timestap of 13/11/2021 at 15:29 - which seems like an older version.

    Should we be using the older version in v12.00, or did you forget to put the new version from v11.10 into v12.00?

    I am just verifying before I begin testing over the weekend.
     
  8. plasmah77

    plasmah77 MDL Novice

    Apr 3, 2016
    46
    16
    0
    Hi quick question about the removal process. After removing all that bloat from Windows 10 or 11 does any of it get replaced after you update? Thanks
     
  9. graver.x

    graver.x MDL Senior Member

    Jan 18, 2020
    349
    486
    10
    Yes, starting from v1903 some removed components will be returned after CU installation.
     
  10. graver.x

    graver.x MDL Senior Member

    Jan 18, 2020
    349
    486
    10
    Success to you in all your endeavors!
    I join @Feartamixg in asking: The newest version of Toolkit v12.0 has an older ToolkitHelper (v1.0.5616.0) than was used in Toolkit v11.10 (ToolkitHelper v1.0.5724.0).

    I would also like to be sure that this is due to technical necessity, and is not an accidental mistake.
     
  11. graver.x

    graver.x MDL Senior Member

    Jan 18, 2020
    349
    486
    10
    #21711 graver.x, Dec 3, 2021
    Last edited: Dec 3, 2021
    Update the image to the CU specified in the Changelog for Toolkit v11.10-v12.0 (19044.1387), and add this components to you RemovePkgsList (based on a template: Toolkit\Bin\Lists\ToolkitHelper_Templates\RemovePkgsList_W10_LTSC_2021.txt) for its removing:
    Code:
    TIFFIFilter
    OfflineFiles
    OpenSSH
    RemoteDesktopClient
    RDC
    SimpleTCPIPServices
    TelnetClient
    TFTPClient
    RemoteDesktopServer
    RemoteRegistry
    WorksFolderClient
    ProjFS
    StorageSpaces
    
    #21589 (mydigitallife.net)
     
  12. 正义羊

    正义羊 MDL Senior Member

    Feb 21, 2016
    260
    160
    10
    @MSMG ,
    Sorry for speak same issue again.
    In Toolkit v11.10 & 12.0 lines 1751 & 1860:
    Checking whether the selected Source OS is Windows 10 v1809/v1904/v19H2/v20H1/v20H2/v21H1/v21H2 Client Edition

    It should be:
    Checking whether the selected Source OS is Windows 10 v1809/v1903/v1909/v2004/v20H2/v21H1/v21H2 Client Edition

    No v1904/19H2/20H1, they are v1903/1909/2004

    In Toolkit v11.10 & 12.0
    Code:
    :: Checking whether the HOST OS is Windows 7 and selected Source OS is Windows 10/11
    if "%HostVersion%" equ "6.1" if "%SelectedSourceOS%" neq "w7" if "%SelectedSourceOS%" neq "w81" (
        echo.
        echo.ToolKit cannot service Windows 10/11 Source OS on Windows 7 HOST OS...
        echo.
        echo.ToolKit requires a Windows 8.1/10 HOST OS for servicing Windows 10 Source OS...
        goto :Stop
    )
    It should be:
    Code:
    :: Checking whether the HOST OS is Windows 7 and selected Source OS is Windows 10/11
    if "%HostVersion%" equ "6.1" if "%SelectedSourceOS%" neq "w7" if "%SelectedSourceOS%" neq "w81" (
        echo.
        echo.ToolKit cannot service Windows 10/11 Source OS on Windows 7 HOST OS...
        echo.
        echo.ToolKit requires a Windows 8.1/10 HOST OS for servicing Windows 10/11 Source OS...
        goto :Stop
    )
    In Toolkit v11.10 & 12.0 (Update Dec 3rd)
    Code:
        if "%TargetEdition%" equ "ProfessionalCountrySpecific" (
            set "Flag=ProfessionalCountrySpecific"
            set "Edition=ProfessionalCountrySpecific"
            set "Name=Windows %OSID% Pro CountrySpecific"
            set "Description=Windows %OSID% Pro CountrySpecific"
            set "DisplayName=Windows %OSID% Pro CountrySpecific"
            set "DisplayDescription=Windows %OSID% Pro CountrySpecific"
        )
    it should be :
    Code:
        if "%TargetEdition%" equ "ProfessionalCountrySpecific" (
            set "Flag=ProfessionalCountrySpecific"
            set "Edition=ProfessionalCountrySpecific"
            set "Name=Windows %OSID% Pro China Only"
            set "Description=Windows %OSID% Pro China Only"
            set "DisplayName=Windows %OSID% Pro China Only"
            set "DisplayDescription=Windows %OSID% Pro China Only"
        )
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  13. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    Fixed the ToolKitHelper Build version and re-uploaded the Toolkit.
     
  14. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210

    Have optimized the remove menu and re-uploaded the Toolkit, do checkout if I have missed anything.
     
  15. 正义羊

    正义羊 MDL Senior Member

    Feb 21, 2016
    260
    160
    10
    OK. I'll check it.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  16. zero cool root

    zero cool root MDL Senior Member

    Jun 17, 2011
    391
    162
    10
    Hi

    @MSMG

    Firstly, sorry my bad English..!!

    It would be possible to change the Default Microsoft Inbox Applications menu to look like the Remove Windows Components menu, in which we can select the applications we would like to install and all the selected ones will be installed at once. Instead of one to one..??
     
  17. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    @MSMG, I had to make other changes I put in an answer to @正义羊 friend, here.
    That & commercial sequence was causing problems, so I think it was better to separate the conditions in line at the moment. But so, it is certain that it will work in all versions of Windows. In the last change to correct the display for Windows 7 and Windows 8.1 gave problem in the display for Windows 11, heheheh. Separated by lines it was working right. I have 2 possibilities. Now working for 7, 8, 8.1, 10 and 11.

    1st option
    Code:
    for /f "tokens=4-5 delims=[]. " %%s in ('ver 2^>nul') do (set "HostVersion=%%s.%%t" & set "HostOSVersion=%%s")
    if "%HostVersion%" equ "6.1" set "HostOSVersion=7 SP1"
    if "%HostVersion%" equ "6.2" set "HostOSVersion=8"
    if "%HostVersion%" equ "6.3" set "HostOSVersion=8.1"
    if "%HostBuild%" geq "21996" set "HostOSVersion=11"
    set "HostOSName=Windows %HostOSVersion% %HostEdition% %HostInstallationType%"
    
    or 2nd option
    note: 8, 8.1 and 10 should be alright just obtaining the data from registry ProductName.
    Code:
    for /f "tokens=4-5 delims=[]. " %%s in ('ver 2^>nul') do (set "HostVersion=%%s.%%t")
    for /f "tokens=3-4 delims= " %%p in ('reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v "ProductName" ^| find "REG_SZ"') do (set "HostOSName=%%p %%q")
    if "%HostVersion%" equ "6.1" set "HostOSName=!HostOSName! SP1"
    if "%HostBuild%" geq "21996" set "HostOSName=!HostOSName:10=11!"
    set "HostOSName=%HostOSName% %HostEdition% %HostInstallationType%"
    

    The changes made in inboxapps in Zune Music have been undone? Or should remain as presented in Toolkit 11.10?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  18. roedel

    roedel MDL Junior Member

    Jun 3, 2010
    82
    58
    0
    New method to prevent Teams Installation

    It maybe can build in the toolkit.
     
  19. ARCIGA

    ARCIGA MDL Senior Member

    Mar 23, 2015
    309
    76
    10
    MSMG MDL Developer > it is the First Time that Windows Defender shows it as a Virus: MSMG ToolKit v12.0
    Windows Defender ToolKit.jpg
     
  20. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    Just to inform a test:

    I took a test with Malwarebytes in all ToolkitHelper versions, and detected only in Toolkit 12.0 of 2021-12-03 new version that is the same as 11.10 (ToolkitHelper do dia 2021-11-26).
    In the Toolkit version 12.0 yesterday 2021-12-02 (Toolkithelper 2021-11-13) and other previous ones, nothing was detected.


    Who knows may be something newly implemented in ToolkitHelper or MSMG took some digital plague on the PC.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...