1. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    I don't know because I don't use a refreshed images.

    What's your Source OS? Is .Net Framework 4.7.2 is installed?

     
  2. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    Just double-click it.

     
  3. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    Known Issues:
    =============

    - Using ToolKit When Antivirus Programs are Enabled can Affect the ToolKit's Operations.
    - The ToolKit may or may not work properly with Windows 10 Refreshed Images due to the way the DISM works.
    - ToolKit's ToolKitHelper.exe may be flagged as a Virus/Trojan/Malware Program, Don't worry it's just a False Positive Sign.
    - The ToolKit can't/don't support Post-Servicing of ToolKit Serviced Source Images with Other similar Tools like NTLite/WinToolkit/WinReducer.
    - Integrating/Installing Windows Updates/Cumulative Updates After the Component Removal can rarely restore Removed Components Resources or Shortcuts files/folders.
    - Windows 8.1 - Integrating Windows Remote Server Administration Tool (RSAT) Alone will get Integrated But when It's Integrate after Integrating All other Components It will break the Integration with an Error code 0x80092004.
    - Windows 10 Threshold 1 - Integrating Latest Cumulative Update is Not Possible due to Lack of Availability of a Servicing Stack.
    - Windows 10 Threshold 1 - Removing All Apps Except Store and All Windows Components will break Store App and Settings->Apps->Store Restore Feature.
    - Windows 10 Redstone 2 - During Setup OOBE, At the Network Selection Screen, When You Choose Skip, The Setup will Show an Error - "Something went wrong, you can try again, or skip this for now", Just choose Skip.
    - Windows 10 Redstone 2/3/4 - When Custom User Account Picture is Integrated, The Picture is not Displayed in Logon Screen Although it's been Displayed in StartMenu User Icon.
    - Windows 10 Redstone 3/4 - Removing Unified Telemetry Client (Asimov) under Microsoft Telemetry Component breaks Sticky Notes App and the Ability to Install Drivers through Windows Update.
    - Windows 10 Redstone 4 - Removing Windows Media Player Component from an Image with a Cumulative Update pre-integrated will break the Windows Installation.
    - Windows 10 Redstone 3/4 - It has been Reported that in the Format USB Function, the Diskpart command "list" is not Working when used within a Script.
    - Windows 10 Redstone 3/4 - It has been Reported that the Win32Calc Pack Integration breaks the Office 365 Preview Handlers.
    - Windows 10 Redstone 5 - Due to Microsoft's Implementation of PSFX update format, The ToolKitHelper.exe has disabled WinSXS cleanup and so SFC /SCANNOW can throw errors and so their by restores the removed components.
    - Windows 10 Redstone 5 - Removing Adobe Flash for Windows will get restored through Windows Update since it is a standalone package which is updated only through the Windows Update.



     
  4. AsaadSoft

    AsaadSoft MDL Addicted

    Jul 29, 2015
    549
    179
    30
    what does that means ? and how it affects the system for using ??
    does installing new updates from windows update fix that ?.
     
  5. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    Sorry can't give any ETA right now.

    use wim_install_tweak.exe to get the packages info.

     
  6. Windows 10 User

    Windows 10 User MDL Guru

    Feb 2, 2017
    2,031
    128
    90
    #8526 Windows 10 User, Nov 20, 2018
    Last edited: Sep 24, 2023
    Now two Adobe Flash Player updates appear in Windows Update instead of only one like before after removing Adobe Flash Player. Is there a way to prevent this and if so, how? How can I succesfully install the latest CU through Windows Update after integrating the previous one and the latest SSU and removing and configuring some things? Is there a way to remove the InputApp and Tablet PC?
     
  7. Feartamixg

    Feartamixg MDL Addicted

    May 15, 2016
    786
    631
    30
    Thank you for clarifying, I wanted to make sure that all was good.

    Once again MSMG, thank you very much for all of your hard work that has gone into this amazing Toolkit.
     
  8. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    #8528 MSMG, Nov 20, 2018
    Last edited: Nov 20, 2018
    (OP)
    Tested with Store Integration on Windows 10 Enterprise LTSC 2019 x64 source image and yes it's not working and also found out that for x64 image we need to integrate both x86+x64 dependency appx's for proper functioning of Apps.

    When both x86+x64 dependency appx's are installed the store works, will fix in the next update.

    Edit: It seems the error was with the assigning the dependency file path, please do make the below changes in the ToolKit.cmd file

    Change the below lines

    Code:
    if "%ImageArchitecture%" neq "arm64" for /f %%i IN ('"dir /b *NET.Native.Framework*%ImageArchitecture%*1.3*.appx" 2^>nul') do set "NETNativeFramework13=/DependencyPackagePath:%Apps%\%%i"
    if "%ImageArchitecture%" equ "arm64" for /f %%i IN ('"dir /b *NET.Native.Framework*arm*1.3*.appx" 2^>nul') do set "NETNativeFramework13=/DependencyPackagePath:%Apps%\%%i"
    if "%ImageArchitecture%" neq "arm64" for /f %%i IN ('"dir /b *NET.Native.Framework*%ImageArchitecture%*1.6*.appx" 2^>nul') do set "NETNativeFramework16=/DependencyPackagePath:%Apps%\%%i"
    if "%ImageArchitecture%" equ "arm64" for /f %%i IN ('"dir /b *NET.Native.Framework*arm*1.6*.appx" 2^>nul') do set "NETNativeFramework16=/DependencyPackagePath:%Apps%\%%i"
    if "%ImageArchitecture%" neq "arm64" for /f %%i IN ('"dir /b *NET.Native.Framework*%ImageArchitecture%*1.7*.appx" 2^>nul') do set "NETNativeFramework17=/DependencyPackagePath:%Apps%\%%i"
    if "%ImageArchitecture%" equ "arm64" for /f %%i IN ('"dir /b *NET.Native.Framework*x86*1.7*.appx" 2^>nul') do set "NETNativeFramework17=/DependencyPackagePath:%Apps%\%%i"
    if "%ImageArchitecture%" neq "arm64" for /f %%i IN ('"dir /b *NET.Native.Runtime*%ImageArchitecture%*1.3*.appx" 2^>nul') do set "NETNativeRuntime13=/DependencyPackagePath:%Apps%\%%i"
    if "%ImageArchitecture%" equ "arm64" for /f %%i IN ('"dir /b *NET.Native.Runtime*arm*1.3*.appx" 2^>nul') do set "NETNativeRuntime13=/DependencyPackagePath:%Apps%\%%i"
    if "%ImageArchitecture%" neq "arm64" for /f %%i IN ('"dir /b *NET.Native.Runtime*%ImageArchitecture%*1.4*.appx" 2^>nul') do set "NETNativeRuntime14=/DependencyPackagePath:%Apps%\%%i"
    if "%ImageArchitecture%" equ "arm64" for /f %%i IN ('"dir /b *NET.Native.Runtime*arm*1.4*.appx" 2^>nul') do set "NETNativeRuntime14=/DependencyPackagePath:%Apps%\%%i"
    if "%ImageArchitecture%" neq "arm64" for /f %%i IN ('"dir /b *NET.Native.Runtime*%ImageArchitecture%*1.6*.appx" 2^>nul') do set "NETNativeRuntime16=/DependencyPackagePath:%Apps%\%%i"
    if "%ImageArchitecture%" equ "arm64" for /f %%i IN ('"dir /b *NET.Native.Runtime*arm*1.6*.appx" 2^>nul') do set "NETNativeRuntime16=/DependencyPackagePath:%Apps%\%%i"
    if "%ImageArchitecture%" neq "arm64" for /f %%i IN ('"dir /b *NET.Native.Runtime*%ImageArchitecture%*1.7*.appx" 2^>nul') do set "NETNativeRuntime17=/DependencyPackagePath:%Apps%\%%i"
    if "%ImageArchitecture%" equ "arm64" for /f %%i IN ('"dir /b *NET.Native.Runtime*arm*1.7*.appx" 2^>nul') do set "NETNativeRuntime17=/DependencyPackagePath:%Apps%\%%i"
    
    To

    Code:
    if "%ImageArchitecture%" neq "arm64" for /f %%i IN ('"dir /b *NET.Native.Framework*1.3*%ImageArchitecture%*.appx" 2^>nul') do set "NETNativeFramework13=/DependencyPackagePath:%Apps%\%%i"
    if "%ImageArchitecture%" equ "arm64" for /f %%i IN ('"dir /b *NET.Native.Framework*1.3*arm*.appx" 2^>nul') do set "NETNativeFramework13=/DependencyPackagePath:%Apps%\%%i"
    if "%ImageArchitecture%" neq "arm64" for /f %%i IN ('"dir /b *NET.Native.Framework*1.6*%ImageArchitecture%*.appx" 2^>nul') do set "NETNativeFramework16=/DependencyPackagePath:%Apps%\%%i"
    if "%ImageArchitecture%" equ "arm64" for /f %%i IN ('"dir /b *NET.Native.Framework*1.6*arm*.appx" 2^>nul') do set "NETNativeFramework16=/DependencyPackagePath:%Apps%\%%i"
    if "%ImageArchitecture%" neq "arm64" for /f %%i IN ('"dir /b *NET.Native.Framework*1.7*%ImageArchitecture%*.appx" 2^>nul') do set "NETNativeFramework17=/DependencyPackagePath:%Apps%\%%i"
    if "%ImageArchitecture%" equ "arm64" for /f %%i IN ('"dir /b *NET.Native.Framework*1.7*x86*.appx" 2^>nul') do set "NETNativeFramework17=/DependencyPackagePath:%Apps%\%%i"
    if "%ImageArchitecture%" neq "arm64" for /f %%i IN ('"dir /b *NET.Native.Runtime*1.3*%ImageArchitecture%*.appx" 2^>nul') do set "NETNativeRuntime13=/DependencyPackagePath:%Apps%\%%i"
    if "%ImageArchitecture%" equ "arm64" for /f %%i IN ('"dir /b *NET.Native.Runtime*1.3*arm*.appx" 2^>nul') do set "NETNativeRuntime13=/DependencyPackagePath:%Apps%\%%i"
    if "%ImageArchitecture%" neq "arm64" for /f %%i IN ('"dir /b *NET.Native.Runtime*1.4*%ImageArchitecture%*.appx" 2^>nul') do set "NETNativeRuntime14=/DependencyPackagePath:%Apps%\%%i"
    if "%ImageArchitecture%" equ "arm64" for /f %%i IN ('"dir /b *NET.Native.Runtime*1.4*arm*.appx" 2^>nul') do set "NETNativeRuntime14=/DependencyPackagePath:%Apps%\%%i"
    if "%ImageArchitecture%" neq "arm64" for /f %%i IN ('"dir /b *NET.Native.Runtime*1.6*%ImageArchitecture%*.appx" 2^>nul') do set "NETNativeRuntime16=/DependencyPackagePath:%Apps%\%%i"
    if "%ImageArchitecture%" equ "arm64" for /f %%i IN ('"dir /b *NET.Native.Runtime*1.6*arm*.appx" 2^>nul') do set "NETNativeRuntime16=/DependencyPackagePath:%Apps%\%%i"
    if "%ImageArchitecture%" neq "arm64" for /f %%i IN ('"dir /b *NET.Native.Runtime*1.7*%ImageArchitecture%*.appx" 2^>nul') do set "NETNativeRuntime17=/DependencyPackagePath:%Apps%\%%i"
    if "%ImageArchitecture%" equ "arm64" for /f %%i IN ('"dir /b *NET.Native.Runtime*1.7*arm*.appx" 2^>nul') do set "NETNativeRuntime17=/DependencyPackagePath:%Apps%\%%i"
    
    Do try out if this works.

     
  9. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    Can't say how it will affect the OS or the WU, it's always better to use the vanilla source image when the ToolKitHelper.exe is coded based on it.

     
  10. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    Please do post a screenshot of the double Flash entries.

    Are you having issues with WU installing CU when there is already a CU pre-integrated?

    InputApp and Tablet PC are linked with other components and it may also break the Store Apps functioning and that's why I have left it.

     
  11. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    Yes it's a compromise b/w SFC and WU.

     
  12. Arief Pizzuti

    Arief Pizzuti MDL Novice

    May 6, 2017
    11
    6
    0
    Hey @MSMG which component is considered as telemetry other than Asimov? I didnt want to remove any telemetry.
     
  13. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    Asimov is the Telemetry component which is dependent on Windows Error Reporting.

    CEIP can also be considered as Telemetry since it is used by MS to improve the Software product (SQM)

     
  14. Windows 10 User

    Windows 10 User MDL Guru

    Feb 2, 2017
    2,031
    128
    90
    #8534 Windows 10 User, Nov 20, 2018
    Last edited: Jul 13, 2023
    Well, I had a VM but I already deleted it. What's the difference between having one or two entries? Is there a way to prevent any Adobe Flash Player updates from appearing in Windows Update?
     
  15. boo123

    boo123 MDL Member

    Sep 20, 2013
    247
    32
    10
    I was using the Enterprise LTSC 2019 before the accumulative update. v8.9 was working fine but v9.0 didn't. I have 4.7.2 installed as well.
     
  16. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    #8537 MSMG, Nov 20, 2018
    Last edited: Nov 20, 2018
    (OP)
    There's no way to prevent Flash update from showing up in WU, will check with WinSXS Cleanup to see if it blocks Flash.

     
  17. boo123

    boo123 MDL Member

    Sep 20, 2013
    247
    32
    10
    I successfully created a .iso from your toolkit and seem that I cant install on vm. I used the N version and Vmworkstation 14.
     
  18. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    What's the error displayed in VM?