1. adabo

    adabo MDL Novice

    Aug 2, 2009
    20
    3
    0
    Nice! Do you know if these third party apps disable the actual services/systems/programs or simply block network traffic? The main goal is to keep the OS running smooth.
     
  2. iskakfatoni

    iskakfatoni MDL Novice

    Mar 19, 2010
    14
    1
    0
    With the latest Toolkit.cmd an ToolkitHelper.exe, its fixed. Thx you
     
  3. Supern00b

    Supern00b MDL Addicted

    Dec 30, 2010
    768
    560
    30
    No, I can't answer that, it all depends on how deep you go.
    I've used some really rigorous methods in the past to stop the spyware, but some of those tweaks broke networking stuff.
    Besides that, I don't think it's possible to absolutely block all telemetry and phone-home stuff.
    But with the ap I suggested you can do a lot and do it without compromising the running OS.

    Cheers.
     
  4. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    #20644 inTerActionVRI, Oct 8, 2021
    Last edited: Oct 8, 2021
    @Supern00b, can you share your final list for Windows 7 Experience?

    Edit: Google Translator typo.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. Titanos

    Titanos MDL Novice

    Dec 11, 2019
    31
    28
    0
    @MSMG

    I did the same test twice using last toolkit (11.8 + updated files) and win10 19043.1237 and I found some ghosts / leftovers files. The files (+others) marked with red were removed from ISO file.
    When I used 11.7 version of toolkit I didn't got that.

    msmg-error.jpg

    msmg-error-2.jpg
     
  6. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    As reported in my last post, while fixing the issue with long path names, the removal of Apps has been broken.

    Now have fixed the issues including Widgets removal exception error.

    Will be uploading the updated ToolkitHelper.exe and Toolkitscript.cmd, do download and test it.


     
  7. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    Before I had added this key in ToolKit's removal but removed it later as it's works separately using mrt.exe.

    Will be adding it back if you want.

     
  8. Feartamixg

    Feartamixg MDL Addicted

    May 15, 2016
    786
    631
    30
    @MSMG
    Has something recently changed that would cause the image sizes to drastically increase in size?

    Using the same 19043.1237 images, these are the changes I have seen:-
    x86 image has increased from around 2.3GB to around 2.9GB
    x64 image has increased from around 3.3GB to around 4.1GB.

    Could be either the updated Toolkit.cmd or ToolKitHelper.exe? Is it possible to upload a previous version of ToolKitHelper.exe to test?
     
  9. Feartamixg

    Feartamixg MDL Addicted

    May 15, 2016
    786
    631
    30
  10. graver.x

    graver.x MDL Senior Member

    Jan 18, 2020
    349
    486
    10
    MSMG ToolKit | Page 1030
     
  11. Feartamixg

    Feartamixg MDL Addicted

    May 15, 2016
    786
    631
    30
    Will it also work with 19043.1237? I am sceptical about deploying preview builds on machines.
     
  12. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    If you want to use 19043.1237 then use the v11.8 + newer Toolkit.cmd.

    and then use the newer ToolKitHelper to remove just the Widgets app.

     
  13. kosta26

    kosta26 MDL Junior Member

    Jan 1, 2019
    91
    5
    0
    Highlighted in red, how to delete it? What kind of application or component is it.
     

    Attached Files:

    • 11.jpg
      11.jpg
      File size:
      61.2 KB
      Views:
      59
  14. zero cool root

    zero cool root MDL Senior Member

    Jun 17, 2011
    391
    162
    10
    Hi @kosta26

    How did you do to remove the Apps Suggest from Start Menu..??
     
  15. Titanos

    Titanos MDL Novice

    Dec 11, 2019
    31
    28
    0
  16. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    It's part of MicrosoftWindows.Client.CBS_cw5n1h2txyewy, removing the MicrosoftWindows.Client.CBS_cw5n1h2txyewy will break many things, however you can remove the shortcut or the the app from listing in start menu by modifying the AppxManifest.xml but this will break the SFC.

     
  17. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    #20660 inTerActionVRI, Oct 8, 2021
    Last edited: Oct 8, 2021
    for /f "tokens=3 delims= " %%k in ('reg query "HKLM\SOFTWARE\Microsoft\Windows NT\CurrentVersion" /v "DisplayVersion" ^| find "REG_SZ"') do (set HostDisplayVersion=%%k)

    DisplayVersion not exist for leq build 18363. Only CurrentVersion, but return "6.3" value.

    for hostlanguage could be...

    from dism
    for /f "tokens=6 delims= " %%o in ('DISM /Online /English /Get-Intl ^| findstr /i /C:"Default system UI language"') do (set HostLanguage=%%o)

    to reg query too
    for /f "tokens=3 delims= " %%o in ('reg query "HKLM\SYSTEM\CurrentControlSet\Control\CommonGlobUserSettings\Control Panel\International" /v "LocaleName" ^| find "REG_SZ"') do (set "HostLanguage=%%o")


    from
    Code:
    :: Setting Windows Media Feature Pack folder path according to selected Source OS
    if "%SelectedSourceOS%" neq "w10" set "MediaFeaturePack=%MediaFeaturePack%\%SelectedSourceOS%"
    if "%SelectedSourceOS%" neq "w7" if "%SelectedSourceOS%" neq "w81" set "MediaFeaturePack=%MediaFeaturePack%\%SelectedSourceOS%\%PackageVersion%"
    
    to
    Code:
    :: Setting Windows Media Feature Pack folder path according to selected Source OS
    if "%SelectedSourceOS%" neq "w10" if "%SelectedSourceOS%" neq "w11" set "MediaFeaturePack=%MediaFeaturePack%\%SelectedSourceOS%"
    if "%SelectedSourceOS%" neq "w7" if "%SelectedSourceOS%" neq "w81" set "MediaFeaturePack=%MediaFeaturePack%\%SelectedSourceOS%\%PackageVersion%"
    
    :IntPortableDevices session need this condition:
    Code:
    :: Checking whether exists N Editions supported for Portable Devices Integration are selected as source.
    set /A ImageEditionCount=0
    for /d %%j in (StarterN, StarterKN, HomeBasicN, HomeBasicKN, CoreN, CloudN, ProessionalN, ProfessionalKN, ProfessionalEducationN, ProfessionalEducationKN, EnterpriseN, EnterpriseKN, EnterpriseSN, EnterpriseGN, UltimateN, UltimateKN, EducationN, EducationKN) do (
       if "%ImageEdition%" equ "%%j" set /A ImageEditionCount+=1
    )
    
    if %ImageEditionCount% equ 0 (
       echo.No N Edition was found. And, Non-N Editions are not supported.
       echo.
       goto :Stop
    )
    

    In :ExportMetroAppsAssociation session
    Both "goto :Stop" are breaking the loop to other indexes.

    Just removing both "goto :Stop", the code runs correctly, when there is no Metro Apps Association it follows to the next index correctly. I think this can be helpful when we work with an image with personalized indexes in different ways.

    optimize with replace all
    from
    Code:
               if "%ImageArchitecture%" equ "x86" (
                   Reg delete "HKLM\TK_SOFTWARE\Microsoft\Windows NT\CurrentVersion\drivers.desc" /f >nul 2>&1
                   Reg add "HKLM\TK_SOFTWARE\Microsoft\Windows NT\CurrentVersion\drivers.desc" /v "%%SystemRoot%%\System32\l3codecp.acm" /t REG_SZ /d "Fraunhofer IIS MPEG Layer-3 Codec (Professional)" /f >nul
                   Reg add "HKLM\TK_SOFTWARE\Microsoft\Windows NT\CurrentVersion\Drivers32" /v "msacm.l3acm" /t REG_EXPAND_SZ /d "%%SystemRoot%%\System32\l3codecp.acm" /f >nul
               )
    
               if "%ImageArchitecture%" equ "x64" (
                   Reg delete "HKLM\TK_SOFTWARE\Microsoft\Windows NT\CurrentVersion\drivers.desc" /f >nul 2>&1
                   Reg add "HKLM\TK_SOFTWARE\Microsoft\Windows NT\CurrentVersion\drivers.desc" /v "%%SystemRoot%%\System32\l3codecp.acm" /t REG_SZ /d "Fraunhofer IIS MPEG Layer-3 Codec (Professional)" /f >nul
                   Reg add "HKLM\TK_SOFTWARE\Microsoft\Windows NT\CurrentVersion\Drivers32" /v "msacm.l3acm" /t REG_EXPAND_SZ /d "%%SystemRoot%%\System32\l3codecp.acm" /f >nul
                   Reg delete "HKLM\TK_SOFTWARE\WOW6432Node\Microsoft\Windows NT\CurrentVersion\drivers.desc" /f >nul 2>&1
                   Reg add "HKLM\TK_SOFTWARE\WOW6432Node\Microsoft\Windows NT\CurrentVersion\drivers.desc" /v "%%SystemRoot%%\SysWOW64\l3codecp.acm" /t REG_SZ /d "Fraunhofer IIS MPEG Layer-3 Codec (Professional)" /f >nul
                   Reg add "HKLM\TK_SOFTWARE\WOW6432Node\Microsoft\Windows NT\CurrentVersion\Drivers32" /v "msacm.l3acm" /t REG_EXPAND_SZ /d "%%SystemRoot%%\SysWOW64\l3codecp.acm" /f >nul
               )
    
    to
    Code:
           if "%Tweak%" equ "EnableFMP3ProCodec" (
               Reg delete "HKLM\TK_SOFTWARE\Microsoft\Windows NT\CurrentVersion\drivers.desc" /f >nul 2>&1
               Reg add "HKLM\TK_SOFTWARE\Microsoft\Windows NT\CurrentVersion\drivers.desc" /v "%%SystemRoot%%\System32\l3codecp.acm" /t REG_SZ /d "Fraunhofer IIS MPEG Layer-3 Codec (Professional)" /f >nul
               Reg add "HKLM\TK_SOFTWARE\Microsoft\Windows NT\CurrentVersion\Drivers32" /v "msacm.l3acm" /t REG_EXPAND_SZ /d "%%SystemRoot%%\System32\l3codecp.acm" /f >nul
               if "%ImageArchitecture%" equ "x64" (
                   Reg delete "HKLM\TK_SOFTWARE\WOW6432Node\Microsoft\Windows NT\CurrentVersion\drivers.desc" /f >nul 2>&1
                   Reg add "HKLM\TK_SOFTWARE\WOW6432Node\Microsoft\Windows NT\CurrentVersion\drivers.desc" /v "%%SystemRoot%%\SysWOW64\l3codecp.acm" /t REG_SZ /d "Fraunhofer IIS MPEG Layer-3 Codec (Professional)" /f >nul
                   Reg add "HKLM\TK_SOFTWARE\WOW6432Node\Microsoft\Windows NT\CurrentVersion\Drivers32" /v "msacm.l3acm" /t REG_EXPAND_SZ /d "%%SystemRoot%%\SysWOW64\l3codecp.acm" /f >nul
               )
           )
    

    Replace all
    from
    selectedSourceOS
    to
    SelectedSourceOS

    Considering that this is determined at the beginning of the code and is unchanging.
    Maybe all should be replaced from
    !DefaultIndexNo!
    to
    %DefaultIndexNo%
    to
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...