1. x33st0rm

    x33st0rm MDL Novice

    Dec 25, 2016
    7
    0
    0
    #19681 x33st0rm, Jun 19, 2021
    Last edited: Jun 19, 2021
  2. Bira

    Bira MDL Senior Member

    Oct 4, 2017
    280
    157
    10
    Code:
               :: Applying Windows 7 Extended Security Update (ESU) Suppressor Patch
               echo.
               echo.-------------------------------------------------------------------------------
               echo.Apply Windows 7 Extended Security Update ^(ESU^) Suppressor Patch...
               echo.-------------------------------------------------------------------------------
               call :ApplyImage "%W7ESU%\ESU.tpk", %PackageIndex%, "%InstallMount%\%%i"
    
               echo.-------------------------------------------------------------------------------
               echo.Importing Windows 7 Extended Security Update ^(ESU^) Registry Settings...
               echo.-------------------------------------------------------------------------------
               echo.
               echo.Mounting Image Registry...
               call :MountImageRegistry "%InstallMount%\%%i"
    
               for /f "tokens=5 delims=\" %%a in ('reg query "HKLM\TK_COMPONENTS\DerivedData\Components" ^| findstr "%ImageArchitecture%_!EsuFoundation!"') do (set "EsuFoundation=%%a")
    
               if "%ImageArchitecture%" equ "x86" (
                   reg delete "HKLM\TK_COMPONENTS\DerivedData\Components\x86_microsoft-windows-s..edsecurityupdatesai_31bf3856ad364e35_6.1.7603.25000_none_6eb019927ae880f2" /f >nul 2>&1
                   reg add "HKLM\TK_COMPONENTS\DerivedData\Components\x86_microsoft-windows-s..edsecurityupdatesai_31bf3856ad364e35_6.1.7603.25000_none_6eb019927ae880f2" /v "identity" /t REG_BINARY /d "4D6963726F736F66742D57696E646F77732D534C432D436F6D706F6E656E742D457874656E64656453656375726974795570646174657341492C2043756C747572653D6E65757472616C2C2056657273696F6E3D362E312E373630332E32353030302C205075626C69634B6579546F6B656E3D333162663338353661643336346533352C2050726F636573736F724172636869746563747572653D7838362C2076657273696F6E53636F70653D4E6F6E537853" >nul
                   reg add "HKLM\TK_COMPONENTS\DerivedData\Components\x86_microsoft-windows-s..edsecurityupdatesai_31bf3856ad364e35_6.1.7603.25000_none_6eb019927ae880f2" /v "S256H" /t REG_BINARY /d "343B7E8DE2FE932E2FA1DB0CDFE69BB648BEE8E834B41728F1C83A12C1766ECB" >nul
                   reg add "HKLM\TK_COMPONENTS\DerivedData\Components\x86_microsoft-windows-s..edsecurityupdatesai_31bf3856ad364e35_6.1.7603.25000_none_6eb019927ae880f2" /v "c^!!EsuFoundation!" /t REG_BINARY /d "" >nul
                   reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\SideBySide\Winners\x86_microsoft-windows-s..edsecurityupdatesai_31bf3856ad364e35_none_b26c9b4c15d241fc" /ve /t REG_SZ /d "6.1" >nul
                   reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\SideBySide\Winners\x86_microsoft-windows-s..edsecurityupdatesai_31bf3856ad364e35_none_b26c9b4c15d241fc\6.1" /v "6.1.7603.25000" /t REG_BINARY /d "01" >nul
                   reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\SideBySide\Winners\x86_microsoft-windows-s..edsecurityupdatesai_31bf3856ad364e35_none_b26c9b4c15d241fc\6.1" /ve /t REG_SZ /d "6.1.7603.25000" >nul
               )
    
               if "%ImageArchitecture%" equ "x64" (
                   reg delete "HKLM\TK_COMPONENTS\DerivedData\Components\amd64_microsoft-windows-s..edsecurityupdatesai_31bf3856ad364e35_6.1.7603.25000_none_caceb5163345f228" /f >nul 2>&1
                   reg add "HKLM\TK_COMPONENTS\DerivedData\Components\amd64_microsoft-windows-s..edsecurityupdatesai_31bf3856ad364e35_6.1.7603.25000_none_caceb5163345f228" /v "identity" /t REG_BINARY /d "4D6963726F736F66742D57696E646F77732D534C432D436F6D706F6E656E742D457874656E64656453656375726974795570646174657341492C2043756C747572653D6E65757472616C2C2056657273696F6E3D362E312E373630332E32353030302C205075626C69634B6579546F6B656E3D333162663338353661643336346533352C2050726F636573736F724172636869746563747572653D616D6436342C2076657273696F6E53636F70653D4E6F6E537853" >nul
                   reg add "HKLM\TK_COMPONENTS\DerivedData\Components\amd64_microsoft-windows-s..edsecurityupdatesai_31bf3856ad364e35_6.1.7603.25000_none_caceb5163345f228" /v "S256H" /t REG_BINARY /d "45D0AE442FD92CE32EE1DDC38EA3B875EAD9A53D6A17155A10FA9D9E16BEDEB2" >nul
                   reg add "HKLM\TK_COMPONENTS\DerivedData\Components\amd64_microsoft-windows-s..edsecurityupdatesai_31bf3856ad364e35_6.1.7603.25000_none_caceb5163345f228" /v "c^!!EsuFoundation!" /t REG_BINARY /d "" >nul
                   reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\SideBySide\Winners\amd64_microsoft-windows-s..edsecurityupdatesai_31bf3856ad364e35_6.1.7603.25000_none_caceb5163345f228" /ve /t REG_SZ /d "6.1" >nul
                   reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\SideBySide\Winners\amd64_microsoft-windows-s..edsecurityupdatesai_31bf3856ad364e35_6.1.7603.25000_none_caceb5163345f228\6.1" /v "6.1.7603.25000" /t REG_BINARY /d "01" >nul
                   reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\SideBySide\Winners\amd64_microsoft-windows-s..edsecurityupdatesai_31bf3856ad364e35_6.1.7603.25000_none_caceb5163345f228\6.1" /ve /t REG_SZ /d "6.1.7603.25000" >nul
               )
    
               echo.Importing Registry Settings to Image Registry...
               if exist "%W7ESU%\ESU_%ImageArchitecture%.reg" call :ImportRegistry2Image "%W7ESU%\ESU_%ImageArchitecture%.reg"
    
               echo.Un-Mounting Image Registry...
               call :UnMountImageRegistry
    
    [/QUOTE]

    Code:
    
    ===============================================================================
              MSMG ToolKit - Integrate Microsoft Edge Chromium Browser
    ===============================================================================
    
    -------------------------------------------------------------------------------
    ####Starting Integrating Microsoft Edge Chromium Browser#######################
    -------------------------------------------------------------------------------
    
        Image                    : Install.wim
        Image Index              : 1
        Image Architecture       : x64
        Image Version            : 6.1.7601.17514.1
    
    -------------------------------------------------------------------------------
    ####Integrating Microsoft Edge Chromium Browser################################
    -------------------------------------------------------------------------------
    
    ===========================[Install.wim, Index : 1]============================
    
    -------------------------------------------------------------------------------
    Integrating Windows Servicing Stack Update (SSU) (KB4490628) Package...
    -------------------------------------------------------------------------------
    
    Deployment Image Servicing and Management tool
    Version: 10.0.21382.1
    
    Image Version: 6.1.7601.17514
    
    Processing 1 of 1 - Adding package Package_for_KB4490628~31bf3856ad364e35~amd64~
    ~6.1.1.2
    [==========================100.0%==========================]
    The operation completed successfully.
    
    -------------------------------------------------------------------------------
    Integrating Windows Servicing Stack Update (SSU) (KB4592510) Package...
    -------------------------------------------------------------------------------
    
    Deployment Image Servicing and Management tool
    Version: 10.0.21382.1
    
    Image Version: 6.1.7601.24383
    
    Processing 1 of 1 - Adding package Package_for_KB4592510~31bf3856ad364e35~amd64~
    ~6.1.1.0
    [==========================100.0%==========================]
    The operation completed successfully.
    
    -------------------------------------------------------------------------------
    Integrating Windows SHA-2 Code Update (KB4474419) Package...
    -------------------------------------------------------------------------------
    
    Deployment Image Servicing and Management tool
    Version: 10.0.21382.1
    
    Image Version: 6.1.7601.24563
    
    Processing 1 of 1 - Adding package Package_for_KB4474419~31bf3856ad364e35~amd64~
    ~6.1.3.2
    [==========================100.0%==========================]
    The operation completed successfully.
    
    
    -------------------------------------------------------------------------------
    Apply Windows 7 Extended Security Update (ESU) Suppressor Patch...
    -------------------------------------------------------------------------------
    
    Deployment Image Servicing and Management tool
    Version: 10.0.21382.1
    
    Applying image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Importing Registry Settings to Image Registry...
    A operação foi concluída com êxito.
    
    -------------------------------------------------------------------------------
    Integrating Microsoft Edge Chromium Browser Package...
    -------------------------------------------------------------------------------
    
    Deployment Image Servicing and Management tool
    Version: 10.0.21382.1
    
    Image Version: 6.1.7601.24563
    
    Processing 1 of 1 - Adding package Package_for_KB5001027~31bf3856ad364e35~amd64~
    ~6.1.1.3
    [==========================100.0%==========================]
    The operation completed successfully.
    
    -------------------------------------------------------------------------------
    Integrating Microsoft Edge Chromium Browser Group Policy Base Package...
    -------------------------------------------------------------------------------
    
    Deployment Image Servicing and Management tool
    Version: 10.0.21382.1
    
    Applying image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    -------------------------------------------------------------------------------
    Integrating Microsoft Edge Chromium Browser Group Policy [en-US] Package...
    -------------------------------------------------------------------------------
    
    Deployment Image Servicing and Management tool
    Version: 10.0.21382.1
    
    Applying image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    -------------------------------------------------------------------------------
    ####Finished Integrating Microsoft Edge Chromium Browser#######################
    -------------------------------------------------------------------------------
    
    ===============================================================================
    
    Pressione qualquer tecla para continuar. . .
     
  3. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    #19683 MSMG, Jun 19, 2021
    Last edited: Jun 19, 2021
    (OP)
    Edge from taskbar can be removed using custom taskbar layout but for desktop shortcut you may need to remove it directly from the image.

     
  4. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    Just to have the latest binary I switched to the Server 2022 Win32Calc but seems it has some dependency files required, will try to make it work or restore back to older pack.

     
  5. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    Integrate Windows Updates method will leave the integration order to DISM which unfortunately doesn't' work with Windows 8.1/10 properly.

    Did you removed the components before the integration?

     
  6. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    Thanks have add the fix for the Dedup thing and for other issues use the latest Toolkit.cmd from download link.

     
  7. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    What's the latest W10 ADK version available?

     
  8. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    The ESU_%ImageArchitecture%.reg is not required, just forgot to remove it from Bin folder.

    Instead the registry setting are directly added in the Toolkit since the registry value is not static.


    Code:
               if "%ImageArchitecture%" equ "x86" (
                   reg delete "HKLM\TK_COMPONENTS\DerivedData\Components\x86_microsoft-windows-s..edsecurityupdatesai_31bf3856ad364e35_6.1.7603.25000_none_6eb019927ae880f2" /f >nul 2>&1
                   reg add "HKLM\TK_COMPONENTS\DerivedData\Components\x86_microsoft-windows-s..edsecurityupdatesai_31bf3856ad364e35_6.1.7603.25000_none_6eb019927ae880f2" /v "identity" /t REG_BINARY /d "4D6963726F736F66742D57696E646F77732D534C432D436F6D706F6E656E742D457874656E64656453656375726974795570646174657341492C2043756C747572653D6E65757472616C2C2056657273696F6E3D362E312E373630332E32353030302C205075626C69634B6579546F6B656E3D333162663338353661643336346533352C2050726F636573736F724172636869746563747572653D7838362C2076657273696F6E53636F70653D4E6F6E537853" >nul
                   reg add "HKLM\TK_COMPONENTS\DerivedData\Components\x86_microsoft-windows-s..edsecurityupdatesai_31bf3856ad364e35_6.1.7603.25000_none_6eb019927ae880f2" /v "S256H" /t REG_BINARY /d "343B7E8DE2FE932E2FA1DB0CDFE69BB648BEE8E834B41728F1C83A12C1766ECB" >nul
                   reg add "HKLM\TK_COMPONENTS\DerivedData\Components\x86_microsoft-windows-s..edsecurityupdatesai_31bf3856ad364e35_6.1.7603.25000_none_6eb019927ae880f2" /v "c^!!EsuFoundation!" /t REG_BINARY /d "" >nul
                   reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\SideBySide\Winners\x86_microsoft-windows-s..edsecurityupdatesai_31bf3856ad364e35_none_b26c9b4c15d241fc" /ve /t REG_SZ /d "6.1" >nul
                   reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\SideBySide\Winners\x86_microsoft-windows-s..edsecurityupdatesai_31bf3856ad364e35_none_b26c9b4c15d241fc\6.1" /v "6.1.7603.25000" /t REG_BINARY /d "01" >nul
                   reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\SideBySide\Winners\x86_microsoft-windows-s..edsecurityupdatesai_31bf3856ad364e35_none_b26c9b4c15d241fc\6.1" /ve /t REG_SZ /d "6.1.7603.25000" >nul
               )
    
               if "%ImageArchitecture%" equ "x64" (
                   reg delete "HKLM\TK_COMPONENTS\DerivedData\Components\amd64_microsoft-windows-s..edsecurityupdatesai_31bf3856ad364e35_6.1.7603.25000_none_caceb5163345f228" /f >nul 2>&1
                   reg add "HKLM\TK_COMPONENTS\DerivedData\Components\amd64_microsoft-windows-s..edsecurityupdatesai_31bf3856ad364e35_6.1.7603.25000_none_caceb5163345f228" /v "identity" /t REG_BINARY /d "4D6963726F736F66742D57696E646F77732D534C432D436F6D706F6E656E742D457874656E64656453656375726974795570646174657341492C2043756C747572653D6E65757472616C2C2056657273696F6E3D362E312E373630332E32353030302C205075626C69634B6579546F6B656E3D333162663338353661643336346533352C2050726F636573736F724172636869746563747572653D616D6436342C2076657273696F6E53636F70653D4E6F6E537853" >nul
                   reg add "HKLM\TK_COMPONENTS\DerivedData\Components\amd64_microsoft-windows-s..edsecurityupdatesai_31bf3856ad364e35_6.1.7603.25000_none_caceb5163345f228" /v "S256H" /t REG_BINARY /d "45D0AE442FD92CE32EE1DDC38EA3B875EAD9A53D6A17155A10FA9D9E16BEDEB2" >nul
                   reg add "HKLM\TK_COMPONENTS\DerivedData\Components\amd64_microsoft-windows-s..edsecurityupdatesai_31bf3856ad364e35_6.1.7603.25000_none_caceb5163345f228" /v "c^!!EsuFoundation!" /t REG_BINARY /d "" >nul
                   reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\SideBySide\Winners\amd64_microsoft-windows-s..edsecurityupdatesai_31bf3856ad364e35_6.1.7603.25000_none_caceb5163345f228" /ve /t REG_SZ /d "6.1" >nul
                   reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\SideBySide\Winners\amd64_microsoft-windows-s..edsecurityupdatesai_31bf3856ad364e35_6.1.7603.25000_none_caceb5163345f228\6.1" /v "6.1.7603.25000" /t REG_BINARY /d "01" >nul
                   reg add "HKLM\TK_SOFTWARE\Microsoft\Windows\CurrentVersion\SideBySide\Winners\amd64_microsoft-windows-s..edsecurityupdatesai_31bf3856ad364e35_6.1.7603.25000_none_caceb5163345f228\6.1" /ve /t REG_SZ /d "6.1.7603.25000" >nul
               )
    
     
  9. Ravzzz

    Ravzzz MDL Novice

    Apr 4, 2021
    17
    6
    0
    No sir I did not remove any components prior to integrating the updates. Also noticed that SSU was not necessary since the CU already had in it, so I tried to integrate just the CU, again I got the same version mismatch error. Finally I tried to integrate though WHD and it worked. I think it is supposed to work this way, correct me if I am wrong.

    Also there are few packages(like 3 or 4 packages) missing in the ToolkitHelper list compared to the GUI, will those missing packages get deleted from the list?

    And one last question, is removing components from the GUI same as removing from ToolkitHelper list?
     
  10. trim18

    trim18 MDL Novice

    Mar 2, 2018
    32
    16
    0
    @MSMG sorry to say but Toolkit.cmd from 16.06.2021 on MEGA have Problem that Version in wim Image will not Shown and nothing is to Load . . . in my case 19041.1 .

    The Original Toolkit.cmd in Tollkit_v11.6.7z are working !
     
  11. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    With WHD update pack method, the Toolkit will decide the order and that's why it works but with the Windows Updates integration method the DISM decides the order and unfortunately it doesn't work properly as excepted.

    Which packages are missing in ToolkitHelper list? Did you checked with RemovePkgsList_W10_10.0.19043.txt for Windows 10 21H1?

    Yes using the menus method or the list method it's same, the only difference is using menu method the dependent packages are automatically selected for removal.

     
  12. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    Here's it's working will re-upload the Toolkit_v11.6.7z with the latest Toolkit.cmd do check out.

    Code:
    
    ===============================================================================
                   MSMG ToolKit - Select Source from <DVD> folder
    ===============================================================================
    
    -------------------------------------------------------------------------------
    ####Selecting Source Images####################################################
    -------------------------------------------------------------------------------
    
    Reading Image Information...
    
    ===============================================================================
    | Index | Arch | Name
    ===============================================================================
    |   1   | x64  | Windows 10 Home
    |   2   | x64  | Windows 10 Home N
    |   3   | x64  | Windows 10 Home Single Language
    |   4   | x64  | Windows 10 Education
    |   5   | x64  | Windows 10 Education N
    |   6   | x64  | Windows 10 Enterprise
    |   7   | x64  | Windows 10 Enterprise N
    |   8   | x64  | Windows 10 Pro
    |   9   | x64  | Windows 10 Pro N
    |   10  | x64  | Windows 10 Pro Education
    |   11  | x64  | Windows 10 Pro Education N
    |   12  | x64  | Windows 10 Pro for Workstations
    |   13  | x64  | Windows 10 Pro N for Workstations
    |   14  | x64  | Windows 10 Enterprise for Virtual Desktops
    |   15  | x64  | Windows 10 IoT Enterprise
    ===============================================================================
    
    Enter the Image Index # [Range : 1,...15 or 'A'll 'Q'uit] : 8
    
    Do you want to mount Windows Setup Boot Image ? ['Y'es/'N'o] : N
    Do you want to mount Windows Recovery Image ? ['Y'es/'N'o] : N
    
    -------------------------------------------------------------------------------
    ####Source Image Information###################################################
    -------------------------------------------------------------------------------
    
        Image                    :  Install.wim
        Image Index No           :  8
        Image Architecture       :  x64
        Image Version            :  10.0.19041
        Image Service Pack Build :  1
        Image Service Pack Level :  0
        Image Build              :  19041
        Image Default Language   :  en-US
    
    -------------------------------------------------------------------------------
    ####Mounting Source Images#####################################################
    -------------------------------------------------------------------------------
    
    -------------------------------------------------------------------------------
    Mounting [Install.wim, Index : 8] Image at <\Mount\Install\8>...
    -------------------------------------------------------------------------------
    
    Deployment Image Servicing and Management tool
    Version: 10.0.21382.1
    
    Mounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    -------------------------------------------------------------------------------
    ####Finished Selecting & Mounting Source Images################################
    -------------------------------------------------------------------------------
    
    ===============================================================================
    
    Press any key to continue . . .
    
    
     
  13. kusosaito

    kusosaito MDL Junior Member

    Nov 14, 2018
    59
    6
    0
    #19694 kusosaito, Jun 19, 2021
    Last edited: Jun 19, 2021
    sad///
     
  14. Feartamixg

    Feartamixg MDL Addicted

    May 15, 2016
    783
    629
    30
    Thank you, I look forward to your update for this.
     
  15. JeepWillys58

    JeepWillys58 MDL Addicted

    Nov 6, 2010
    603
    379
    30
    My dear friend @MSMG

    Was there any update of the packages too? I downloaded the full MSMG20210516 zipped package and want to know if I have to download everything again...

    Thanks in advanced
    @JeepWillys58
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  16. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,748
    3,575
    60
    #19697 inTerActionVRI, Jun 20, 2021
    Last edited: Jun 20, 2021

    So there has to be something missing there, because without importing the log files, an error occurs. Importing, the error stops happening.

    edit: I forgot to translate.
     
  17. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    No only the latest Toolkit.cmd was added to the zip.

     
  18. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,608
    210
    #19699 MSMG, Jun 20, 2021
    Last edited: Jun 20, 2021
    (OP)
    Here it's working, tested Edge Chromium Browser integration which requires ESU patch.

    Here the EsuFoundation value is read from the registry and used in the patching process.

    For Windows 7 WHD update pack make sure you don't integrate WithoutESU updates.

    Code:
    ===============================================================================
              MSMG ToolKit - Integrate Microsoft Edge Chromium Browser
    ===============================================================================
    
    -------------------------------------------------------------------------------
    ####Starting Integrating Microsoft Edge Chromium Browser#######################
    -------------------------------------------------------------------------------
    
        Image                    : Install.wim
        Image Index              : 1
        Image Architecture       : x86
        Image Version            : 6.1.7601.17514.1
    
    -------------------------------------------------------------------------------
    ####Integrating Microsoft Edge Chromium Browser################################
    -------------------------------------------------------------------------------
    
    ===========================[Install.wim, Index : 1]============================
    
    -------------------------------------------------------------------------------
    Integrating Windows Servicing Stack Update (SSU) (KB4490628) Package...
    -------------------------------------------------------------------------------
    
    Deployment Image Servicing and Management tool
    Version: 10.0.21382.1
    
    Image Version: 6.1.7601.17514
    
    Processing 1 of 1 - Adding package Package_for_KB4490628~31bf3856ad364e35~x86~~6.1.1.2
    [==========================100.0%==========================]
    The operation completed successfully.
    
    -------------------------------------------------------------------------------
    Integrating Windows Servicing Stack Update (SSU) (KB4592510) Package...
    -------------------------------------------------------------------------------
    
    Deployment Image Servicing and Management tool
    Version: 10.0.21382.1
    
    Image Version: 6.1.7601.24383
    
    Processing 1 of 1 - Adding package Package_for_KB4592510~31bf3856ad364e35~x86~~6.1.1.0
    [==========================100.0%==========================]
    The operation completed successfully.
    
    -------------------------------------------------------------------------------
    Integrating Windows SHA-2 Code Update (KB4474419) Package...
    -------------------------------------------------------------------------------
    
    Deployment Image Servicing and Management tool
    Version: 10.0.21382.1
    
    Image Version: 6.1.7601.24563
    
    Processing 1 of 1 - Adding package Package_for_KB4474419~31bf3856ad364e35~x86~~6.1.3.2
    [==========================100.0%==========================]
    The operation completed successfully.
    
    
    -------------------------------------------------------------------------------
    Apply Windows 7 Extended Security Update (ESU) Suppressor Patch...
    -------------------------------------------------------------------------------
    
    Deployment Image Servicing and Management tool
    Version: 10.0.21382.1
    
    Applying image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    -------------------------------------------------------------------------------
    Integrating Microsoft Edge Chromium Browser Package...
    -------------------------------------------------------------------------------
    
    Deployment Image Servicing and Management tool
    Version: 10.0.21382.1
    
    Image Version: 6.1.7601.24563
    
    Processing 1 of 1 - Adding package Package_for_KB5001027~31bf3856ad364e35~x86~~6.1.1.3
    [==========================100.0%==========================]
    The operation completed successfully.
    
    -------------------------------------------------------------------------------
    Integrating Microsoft Edge Chromium Browser Group Policy Base Package...
    -------------------------------------------------------------------------------
    
    Deployment Image Servicing and Management tool
    Version: 10.0.21382.1
    
    Applying image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    -------------------------------------------------------------------------------
    Integrating Microsoft Edge Chromium Browser Group Policy [en-US] Package...
    -------------------------------------------------------------------------------
    
    Deployment Image Servicing and Management tool
    Version: 10.0.21382.1
    
    Applying image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    -------------------------------------------------------------------------------
    ####Finished Integrating Microsoft Edge Chromium Browser#######################
    -------------------------------------------------------------------------------
    
    ===============================================================================
    
    Press any key to continue . . .
    
     
  19. Tiger-1

    Tiger-1 MDL Guru

    Oct 18, 2014
    7,894
    10,734
    240
    Hi Master, sorry but I do not use any version of this program yet ...
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...