MSMG ToolKit

Discussion in 'MDL Projects and Applications' started by MSMG, Nov 21, 2013.

  1. AsaadSoft

    AsaadSoft MDL Senior Member

    Joined:
    Jul 29, 2015
    Messages:
    349
    Likes Received:
    93
    Trophy Points:
    10
    what does that means ? and how it affects the system for using ??
    does installing new updates from windows update fix that ?.
     
  2. MSMG

    MSMG MDL Developer

    Joined:
    Jul 15, 2011
    Messages:
    5,430
    Likes Received:
    11,396
    Trophy Points:
    180
    Sorry can't give any ETA right now.

    use wim_install_tweak.exe to get the packages info.

     
  3. Windows 10 User

    Windows 10 User MDL Expert

    Joined:
    Feb 2, 2017
    Messages:
    1,229
    Likes Received:
    74
    Trophy Points:
    60
    #8543 Windows 10 User, Nov 20, 2018
    Last edited: Nov 20, 2018
    Now two Adobe Flash Player updates show up 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?
     
  4. Feartamixg

    Feartamixg MDL Addicted

    Joined:
    May 15, 2016
    Messages:
    555
    Likes Received:
    423
    Trophy Points:
    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.
     
  5. MSMG

    MSMG MDL Developer

    Joined:
    Jul 15, 2011
    Messages:
    5,430
    Likes Received:
    11,396
    Trophy Points:
    180
    #8545 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.

     
  6. MSMG

    MSMG MDL Developer

    Joined:
    Jul 15, 2011
    Messages:
    5,430
    Likes Received:
    11,396
    Trophy Points:
    180
    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.

     
  7. MSMG

    MSMG MDL Developer

    Joined:
    Jul 15, 2011
    Messages:
    5,430
    Likes Received:
    11,396
    Trophy Points:
    180
    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.

     
  8. MSMG

    MSMG MDL Developer

    Joined:
    Jul 15, 2011
    Messages:
    5,430
    Likes Received:
    11,396
    Trophy Points:
    180
    Yes it's a compromise b/w SFC and WU.

     
  9. Arief Pizzuti

    Arief Pizzuti MDL Novice

    Joined:
    May 6, 2017
    Messages:
    11
    Likes Received:
    6
    Trophy Points:
    0
    Hey @MSMG which component is considered as telemetry other than Asimov? I didnt want to remove any telemetry.
     
  10. MSMG

    MSMG MDL Developer

    Joined:
    Jul 15, 2011
    Messages:
    5,430
    Likes Received:
    11,396
    Trophy Points:
    180
    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)

     
  11. Windows 10 User

    Windows 10 User MDL Expert

    Joined:
    Feb 2, 2017
    Messages:
    1,229
    Likes Received:
    74
    Trophy Points:
    60
    #8551 Windows 10 User, Nov 20, 2018
    Last edited: Nov 20, 2018
    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 showing up in Windows Update?
     
  12. boo123

    boo123 MDL Member

    Joined:
    Sep 20, 2013
    Messages:
    201
    Likes Received:
    23
    Trophy Points:
    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.
     
  13. boo123

    boo123 MDL Member

    Joined:
    Sep 20, 2013
    Messages:
    201
    Likes Received:
    23
    Trophy Points:
    10
  14. MSMG

    MSMG MDL Developer

    Joined:
    Jul 15, 2011
    Messages:
    5,430
    Likes Received:
    11,396
    Trophy Points:
    180
    #8554 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.

     
  15. boo123

    boo123 MDL Member

    Joined:
    Sep 20, 2013
    Messages:
    201
    Likes Received:
    23
    Trophy Points:
    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.
     
  16. MSMG

    MSMG MDL Developer

    Joined:
    Jul 15, 2011
    Messages:
    5,430
    Likes Received:
    11,396
    Trophy Points:
    180
    What's the error displayed in VM?

     
  17. boo123

    boo123 MDL Member

    Joined:
    Sep 20, 2013
    Messages:
    201
    Likes Received:
    23
    Trophy Points:
    10
    I did not use the menu [2]menu [2] Integrate Windows Setup Media Updates. If I choose option 2 and then install os on vm, will the updates I integrated using the toolkit be present?
     
  18. boo123

    boo123 MDL Member

    Joined:
    Sep 20, 2013
    Messages:
    201
    Likes Received:
    23
    Trophy Points:
    10
  19. jc8

    jc8 MDL Novice

    Joined:
    Mar 12, 2016
    Messages:
    31
    Likes Received:
    17
    Trophy Points:
    0
    Confirmed, Search is not running in the background anymore.