1. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    #20561 MSMG, Oct 2, 2021
    Last edited: Oct 2, 2021
    (OP)
    Tested the Edge Chromium and have fixed the file not found issue, will upload the newer version of Toolkit, do check out.

    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.3.9600.17415.0
    
    -------------------------------------------------------------------------------
    ####Integrating Microsoft Edge Chromium Browser################################
    -------------------------------------------------------------------------------
    
    ===========================[Install.wim, Index : 1]============================
    
    -------------------------------------------------------------------------------
    Integrating Microsoft Edge Chromium Browser Package...
    -------------------------------------------------------------------------------
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22000.1
    
    Image Version: 6.3.9600.17246
    
    Processing 1 of 1 - Adding package Package_for_KB5001027~31bf3856ad364e35~amd64~~6.3.1.2
    [==========================100.0%==========================]
    The operation completed successfully.
    
    -------------------------------------------------------------------------------
    Integrating Microsoft Edge Chromium Browser Group Policy Base Package...
    -------------------------------------------------------------------------------
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22000.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.22000.1
    
    Applying image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    -------------------------------------------------------------------------------
    ####Finished Integrating Microsoft Edge Chromium Browser#######################
    -------------------------------------------------------------------------------
    
    ===============================================================================
    
    Press any key to continue . . .
    
     
  2. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    Though moving the removal of Manual Setup outside the loop solves the issue of repeatedly removing the same thing, still one issue is there, when only ManualSetup has been selected for removal then the Removal will say no components selected.

    So, I have made changes to the script like this

    Code:
    :: Getting Install Image Index Architecture
    call :GetImageArchitecture "%InstallWim%", %DefaultIndexNo% >nul
    
    for %%i in (C_AdobeFlashForWindows,C_EdgeChromium,C_InternetExplorer,C_FirstLogonAnimation,C_GameExplorer,C_SnippingTool,C_SpeechRecognition,C_WindowsMediaPlayer,C_WindowsPhotoViewer,C_WinSAT,C_AssignedAccess,C_CEIP,C_FaceRecognition,C_KernelDebugging,C_LocationService,C_PicturePassword,C_PinEnrollment,C_UnifiedTelemetryClient,C_WiFiNetworkManager,C_WindowsErrorReporting,C_WindowsInsiderHub,C_HomeGroup,C_MultiPointConnector,C_RemoteAssistance,C_DeviceLockdown,C_EaseOfAccessThemes,C_EasyTransfer,C_FileHistory,C_ManualSetup,C_Paint,C_SecurityCenter,C_StepsRecorder,C_SystemRestore,C_WindowsBackup,C_WindowsFirewall,C_WindowsSubsystemForLinux,C_WindowsToGo,C_Wordpad,C_AADBrokerPlugin,C_AccountsControl,C_AssignedAccessLockApp,C_AsyncTextService,C_BioEnrollment,C_CallingShellApp,C_CapturePicker,C_CBSPreview,C_ContentDeliveryManager,C_Cortana,C_CredDialogHost,C_ECApp,C_EdgeDevToolsClient,C_Edge,C_FileExplorer,C_LockApp,C_MapControl,C_NarratorQuickStart,C_OneDrive,C_OOBENetworkCaptivePortal,C_OOBENetworkConnectionFlow,C_ParentalControls,C_PeopleExperienceHost,C_PPIProjection,C_QuickAssist,C_RetailDemoContent,C_SecureAssessmentBrowser,C_SettingSync,C_SkypeORTC,C_SmartScreen,C_Win32WebViewHost,C_WindowsDefender,C_WindowsMixedReality,C_WindowsReaderPDF,C_WindowsStoreClient,C_XboxClient,C_XboxGameCallableUI,C_XGpuEjectDialog,C_3DViewer,C_AdvertisingXaml,C_Alarms,C_BingWeather,C_BingNews,C_Calculator,C_Camera,C_ClientWebExperience,C_CommunicationsApps,C_DesktopAppInstaller,C_FeedbackHub,C_GamingApp,C_GetHelp,C_Getstarted,C_HEIFImageExtension,C_Maps,C_Messaging,C_MixedRealityPortal,C_OfficeHub,C_OfficeOneNote,C_OneConnect,C_Notepad,C_Paint3D,C_People,C_Photos,C_Print3D,C_ServicesStoreEngagement,C_PowerAutomateDesktop,C_ScreenSketch,C_SkypeApp,C_SolitaireCollection,C_SoundRecorder,C_StickyNotes,C_StorePurchaseApp,C_Terminal,C_Todos,C_VP9VideoExtensions,C_WalletService,C_WebMediaExtensions,C_WebpImageExtension,C_WindowsStoreApp,C_XboxApp,C_XboxGameOverlay,C_XboxGamingOverlay,C_XboxIdentityProvider,C_XboxSpeechToTextOverlay,C_XboxTCUI,C_YourPhone,C_ZuneMusic,C_ZuneVideo) do (
        if "%%i" neq "C_ManualSetup" if "%%i" neq "C_WindowsFirewall" if "!%%i!" equ "-" (
            for /f "tokens=2 delims=_" %%j in ("%%i") do (
                set "Components=!Components!%%j;"
            )
        )
    )
    
    if "%Components%" equ "" if "%C_ManualSetup%" equ "+" (
        echo.No Windows Components have been selected for removal...
        goto :Stop
    )
    
    echo.-------------------------------------------------------------------------------
    echo.####Starting Removing Windows Components#######################################
    echo.-------------------------------------------------------------------------------
    echo.
    echo.    Image                    : Install.wim
    echo.    Image Index              : %ImageIndexNo%
    echo.    Image Architecture       : %ImageArchitecture%
    echo.    Image Version            : %ImageVersion%.%ImageServicePackBuild%.%ImageServicePackLevel%
    echo.
    echo.-------------------------------------------------------------------------------
    echo.####Removing Windows Components################################################
    echo.-------------------------------------------------------------------------------
    
    if "%Components%" neq "" (
        for /l %%i in (1, 1, %ImageCount%) do (
            if exist "%InstallMount%\%%i" (
                echo.
                if not %%i gtr 9 echo.===========================[Install.wim, Index : %%i]============================
                if %%i gtr 9 echo.==========================[Install.wim, Index : %%i]============================
                echo.
    
                :: Removing Windows Components
                %ToolKitHelper% "%InstallMount%\%%i" "%Components%"
            )
        )
    )
    
    if "%C_ManualSetup%" equ "-" (
        echo.
        %ToolKitHelper% "%InstallMount%\%DefaultIndexNo%" "ManualSetup"
        echo.
    )
    

    Now it works properly without any issue

    Code:
    ===============================================================================
                      MSMG ToolKit - Removing Windows Components
    ===============================================================================
    
    -------------------------------------------------------------------------------
    ####Starting Removing Windows Components#######################################
    -------------------------------------------------------------------------------
    
        Image                    : Install.wim
        Image Index              : 1
        Image Architecture       : x64
        Image Version            : 10.0.22000.1.0
    
    -------------------------------------------------------------------------------
    ####Removing Windows Components################################################
    -------------------------------------------------------------------------------
    
    ===========================[Install.wim, Index : 1]============================
    
    MSMG ToolKit Commandline Helper
    Version: 1.0.5184.0
    
    Image Version: 10.0.22000.1
    
    Component : WindowsToGo
    
    Removing Package files...
    Modifying Package files...
    Loading Image Registry...
    Modifying Package Registry...
    Unloading Image Registry...
    
    The operation completed successfully.
    
    MSMG ToolKit Commandline Helper
    Version: 1.0.5184.0
    
    Image Version: 10.0.22000.1
    
    Component : ManualSetup
    
    Removing Package files...
    
    The operation completed successfully.
    
    -------------------------------------------------------------------------------
    ####Finished Removing Windows Components#######################################
    -------------------------------------------------------------------------------
    
    ===============================================================================
    
    Press any key to continue . . .
    

     
  3. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    To maintain Windows Update compatibility, I have made changes to the removal program to retain majority of the files and folders in WinSxS folder and so the size reduction is less than in earlier versions.

     
  4. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    Those having issues with removing Widgets from Windows 11 non English source OS, the problem might be is due to NSudo or the folder path contents having special characters.

    Trying removing the same folder from NSudo cmd prompt also gives the same error

    Code:
    Microsoft Windows [Version 10.0.22458.1000]
    (c) Microsoft Corporation. All rights reserved.
    
    D:\Toolkit>rd /q /s "Mount\Install\1\Program Files\WindowsApps\MicrosoftWindows.Client.WebExperience_321.14700.0.9_x64__cw5n1h2txyewy"
    Mount\Install\1\Program Files\WindowsApps\MicrosoftWindows.Client.WebExperience_321.14700.0.9_x64__cw5n1h2txyewy\Dashboard\WebContent\node_modules\@fluentui\theme\node_modules\@uifabric\utilities\lib-amd\customizations\useCustomizationSettings.js - The system cannot find the path specified.
    Mount\Install\1\Program Files\WindowsApps\MicrosoftWindows.Client.WebExperience_321.14700.0.9_x64__cw5n1h2txyewy\Dashboard\WebContent\node_modules\@fluentui\theme\node_modules\@uifabric\utilities\lib-commonjs\customizations\CustomizerContext.js - The system cannot find the path specified.
    Mount\Install\1\Program Files\WindowsApps\MicrosoftWindows.Client.WebExperience_321.14700.0.9_x64__cw5n1h2txyewy\Dashboard\WebContent\node_modules\@fluentui\theme\node_modules\@uifabric\utilities\lib-commonjs\customizations\mergeCustomizations.js - The system cannot find the path specified.
    Mount\Install\1\Program Files\WindowsApps\MicrosoftWindows.Client.WebExperience_321.14700.0.9_x64__cw5n1h2txyewy\Dashboard\WebContent\node_modules\@fluentui\theme\node_modules\@uifabric\utilities\lib-commonjs\customizations\useCustomizationSettings.js - The system cannot find the path specified.
    Mount\Install\1\Program Files\WindowsApps\MicrosoftWindows.Client.WebExperience_321.14700.0.9_x64__cw5n1h2txyewy\Dashboard\WebContent\node_modules\@fluentui\theme\node_modules\@uifabric\utilities\lib-commonjs\renderFunction\composeRenderFunction.js - The system cannot find the path specified.
    Mount\Install\1\Program Files\WindowsApps\MicrosoftWindows.Client.WebExperience_321.14700.0.9_x64__cw5n1h2txyewy\Dashboard\WebContent\node_modules\@fluentui\theme\node_modules\@uifabric\utilities\lib-commonjs\warn\warnConditionallyRequiredProps.js - The system cannot find the path specified.
    
    D:\Toolkit>dir "Mount\Install\1\Program Files\WindowsApps\MicrosoftWindows.Client.WebExperience_321.14700.0.9_x64__cw5n1h2txyewy"
     Volume in drive D is Programs
     Volume Serial Number is 1A20-EFFF
    
     Directory of D:\Toolkit\Mount\Install\1\Program Files\WindowsApps\MicrosoftWindows.Client.WebExperience_321.14700.0.9_x64__cw5n1h2txyewy
    
    02-10-2021  20:12    <DIR>          .
    02-10-2021  20:12    <DIR>          Dashboard
                   0 File(s)              0 bytes
                   2 Dir(s)  48,027,373,568 bytes free
    
    D:\Toolkit>
    

    But this won't happen with English source images even though there is no change in contents of this folder with respective to language, will try to fix it soon.
     
  5. Tiger-1

    Tiger-1 MDL Guru

    Oct 18, 2014
    8,326
    11,613
    270
    Hello MSMG But this is already valid in version 11.8?
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  6. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    Yes, someone had reported about this using newer Toolkit.cmd where I had added a temporary fix for the issue but it seems it's not working.

    Initially I though it might be the issue of ToolKitHelper.exe but even using NSudo Cmd it's not getting deleting.

     
  7. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    From next version support for 10.0.18362.1 and 10.0.19041.1 will be available, if possible will be uploading the test build of ToolkitHelper tomorrow do checkout.

     
  8. Tiger-1

    Tiger-1 MDL Guru

    Oct 18, 2014
    8,326
    11,613
    270
    ok waiting then thanks for all Master
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  9. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  10. If I were to customize a Windows 10 ISO with MSMG, how risky would it be to use NTLite for online removals on top of that? MSMG excels at offline component removal, but NTLite can do online removals. And it can also remove components after updates. Once the OS is installed, MSMG is no longer useful.
     
  11. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    You will use the Toolkit to customize your updated installation media. After that you do what you need, on your machine.
    When you need to make a clean installation, you must create another ISO. This will always save you time. So you will always need the Toolkit, or any other installation media customization tool.

    I'd rather disable Windows Update completely.
    Whenever I create an updated ISO, I do the InPlace upgrade. For me, it's the best way to update without the return of the components already removed.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. Thanks for the info, but I am specifically asking if it's safe to use NTLite on top of a W10 that's been customized by MSMG.

    I don't want to reinstall Windows from fresh media every time I want to install cumulative/feature updates.
     
  13. Sorry For Asking a Question => Are you the one getting trolled at reboot pro since AnonVendetta Requested his account removal there many times but admins were ignoring his requests for account removal.
     
  14. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    InPlace Upgrade will do the same thing as installing Cumulative / Feature Updates. But already customized.

    Yes, you will be able to use Ntlite in the same way. Maybe you can not get it, if through Toolkit Tweaks you block something that makes it difficult for Ntlite to perform Windows Update / Upgrade. But it's just an assumption. I think you're going to be successful. What is obscure is the method used by removing the components through the NTLITE. If it is dism or powershell, the removal is gross. At the Toolkit the toolkithelper makes a finest treatment removal, maintaining pre-requirements.

    First, so you have security, test in VirtualBox or VMware.

    Here, everyone who accompanies this thread is making your own tests. As I've never seen anyone asking this, you will be the pioneer to bring more information about your experience.

    What I can actually say is that I once used the updates via Ntlite and is the same as manual mode. This reinstalls the components again and even if the Ntlite does the automatic removal of the components that were no longer present before the upgrade, still messes the already applied tweaks. Therefore, I already dispense the use of direct update (for my personal machine). It's good to make that clear.

    Hugs and we look forward to your feedback on the tests. It will be of great value, this contribution with one more method.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  15. Yes, I was "banned"/deleted from reboot.pro, but it was at my request, not because of something I did. I still browse that forum, but I'm not a registered user there anymore.

    Anyway, what does that have to do with MSMG/MDL?
     
  16. MSMG

    MSMG MDL Developer

    Jul 15, 2011
    6,414
    15,627
    210
    It's little bit different, will make a comparison and let you know.

     
  17. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    #20578 inTerActionVRI, Oct 3, 2021
    Last edited: Oct 3, 2021
    Guys, I left something at Custom Toolkit, which is to facilitate my tests, but it may be interesting to you too.
    Simply start using menu 1 -> 3 and choose ISO with which you will work.
    Have your packs updated and with the folder structure updated for Toolkit 11.8 (recently changes made by MSMG).
    The custom registry folder also has to be duplicated w10 and w11 folders. I put a bypass for that. Instead of having 2 equal folders, leave only one with the name w10_w11. For Inbox Apps it is also possible but probably the licenses should have their folders separated for W81, W10 and W11. @MSMG, joining the folders will release plenty of space in mega.nz. Files hashsum are equal, for both w10 and w11.
    If you notice any error or jump integration, in the process execution, it is due to some missing pack.

    But basically it is:
    Press the letter P in the main menu and watch the process.

    If you do not want to integrate something, just change the folder name so that the script can not find the pack. Example: If you do not want to integrate inboxapps change the name of the folder from: ".\Packs\Apps" to: ".\Packs\Apps_".

    Automation goes up to, Virtual Create Image Index Editions and ISO finalization.
    Download "VirtualCreate_ImageIndexEditions.zip" that is in my signature to the folder where the "toolkit.cmd" file is.
    Below is the list of packs that will be integrated:
    Removes Components by Preset Custom Selection.

    So that you can take the test.
    Download "virtualcreate_imageindexeditions.zip" that is in my signature to the folder where the "toolkit.cmd" file is.
    Below the list of packs that will be integrated, the Tweaks that will be applied and the components that will be removed by the Preset Custom Selection.

    So that you can take the test.

    Code:
    :: Auto Integrate Menu
       IntWin32Calc
       IntNetFX48 17763
       IntNET5 above 17763
       IntOpenSSH
       IntPowerShell7
    
       IntGames
           CariocaRummy
           HoldEm
           Sudoku
           Tinker
           ChessTitans
           FreeCell
           Hearts
           Inkball
           MahjongTitans
           Minesweeper
           Pinball
           PurblePlace
           Solitaire
           SpiderSolitaire
    
       IntDaRT
    
       IntInboxApps
           AV1VideoExtension
           Calculator
           DesktopAppInstaller
           DirectXRuntime
           GetHelp
           VP9VideoExtensions
           HEIFImageExtension
           HEVCVideoExtension
           MPEG2VideoExtension
           Photos
           Reader
           Scan
           ScreenSketch
           SoundRecorder
           StickyNotes
           Todos
           StorePurchaseApp
           WebMediaExtensions
           WebpImageExtension
           WindowsStore
           XboxTCUI
           XboxGameOverlay
           XboxGamingOverlay
           XboxIdentityProvider
           "w10"
           Paint3D
           Xbox
           MixedRealityViewer
               MixedRealityPortal x64
               Print3D
               PhotosMediaEngine
               Terminal
           "w11"
           Paint
           Gaming
           GamingServices
           Notepad
           PhotosMediaEngine
           PowerAutomateDesktop
           Terminal
           WindowsSubsystemForAndroid
           ClientWebExperience
    
       IntCustomFeatures
           IntCustomFiles
           IntWMPMetroSkin
           IntWPVMetroSkin
           IntWin32CalcMetroSkin
           IntWIconsSkin
    

    At this point the removal of the components will be by Toolkithelper list. Leave your favorite list.
    In this method the dependency filter will be applied. So, according to Build, there will be differences.
    Code:
    :: Auto Remove Menu
    set "RemovalMethod=ToolKitHelper"
    call :RemoveWindowsComponentsList
    
    rem call :CustomPreSets_RemoveWindowsComponents
       rem call :AccessibilityCustomSelection
       rem call :ConservativeGenericEditionCustomSelection
       rem call :LooksLikeLTSCEditionCustomSelection
       rem call :GamerEditionCustomSelection
       rem call :LiteEditionCustomSelection
       rem call :XtremeLiteEditionCustomSelection
       rem call :W7ExperienceEditionCustomSelection
    
    Here is my Personal PreSets
    rem call :PersonalPreSets_RemoveWindowsComponents
       rem call :PersonalFamilyCustomSelection
       rem call :PersonalSpeedCustomSelection
       rem call :PersonalWorkCustomSelection
           rem call :ListsandPreSets_Filter
           rem call :StartRemovingWindowsComponents
    
    :: Auto Customize Menu
    RemoveInboxAppsAssociation
    ImportInboxAppsAssociation
    ImportStartMenuLayout
    
    ImportCustomRegistry
    
    "w10_w11"
       HiberbootEnabled
       EnableDarkThemeandTransparency
       ControlPanelnConfigsandSettingsforFastestWindows
       WindowsExplorer_PreferencesandPolicies
       HideMeetNowIcon
       HideNewsAndInterests
       SetQoSlimittozero_internetWithNoLimits
       BugFix_WiFinoInternetConnection
       SetLanmanWorkstationandDownloads_OptimizationConfigs
       CustomDisableAutomaticallyInstallationforPreSuggested3RDPartyApps
       SetCloudContentfor3RDPartyAppsandDataCollection_Policies
       SetWindowsSearchandCortana_PreferencesandPolicies
       DisableSIA_DebugTracing
       CustomWindowsErrorReporting_Policies
       DisableWindowsSmartScreen
       CustomWindowsDefender_WindowsDefenderSecurityCenterTweaks
       EnableCustomWindowsDriversUpdateTweaks
       CustomDisableWindowsUpdateTweaks
       DisableWindowsUpgrade
       DisableReservedStorage
       ForceLatestNetFramework
       EnablePhotoViewer
       EnableFMP3ProCodec
       EnableFullResetBase
       BlockAutoEdgeChromiumBasedDelivery
       GeneralTweaks
    "w11"
       BypassReq
       TaskbarAlignment_Center2Left
       TaskbarSize
    
    :: Auto Apply Menu
    Cleaning up Image folder
    Trim unwanted Editions
    
    VirtualCreate_ImageIndexEditions
    Edition to be Virtualy Created if supported.
       ProfessionalWorkstation
       ProfessionalWorkstationN
       ProfessionalEducationN
       ProfessionalEducation
       Enterprise
       EnterpriseN
       ServerRdsh
       EducationN
       Education
       IoTEnterprise
       CloudEdition
       CloudEditionN
       CoreSingleLanguage
    
    Any issues, let me know.

    Edit: New Custom Toolkit released. Automated process with Removal Components by ToolkitHelper List.
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  18. Nothing Sorry Again for Asking such a irrelevant question . Pl dont mind
     
  19. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,770
    3,601
    60
    #20580 inTerActionVRI, Oct 3, 2021
    Last edited: Oct 3, 2021
    https://forums.mydigitallife.net/threads/msmg-toolkit.50572/page-793#post-1606110

    Sent an 2021-10-03 New Custom Toolkit updated file attached in the link above.

    *Fixed ManualSetup by MSMG suggestion;
    *:SaveSource session - WinRE minor fix
    *The names of the custom ISOs were getting the name of UUP Dump ISO. In this case, then the Auto Name was directed to the custom ISOs. It is a function that was already available at the Custom Toolkit at the ":Makeiso" session.
    *Automated Removal Components process changed from "PreSet Custom Selection" to "ToolkitHelper List".
    Note: In this method the dependency filter will be applied. So, according to Build, there will be differences.

    Merged made with the Official Toolkit 11.8 from 2021-09-19 to 2021-09-29.

    1. Since my code writing method with the idea of reducing lines was making complicated the merge tasks. As the code was drowned in complications, difficult to readability for other devs. I decided to twist my code, in the sense of wiping. Expanded parts of the code that were in just one line for multiple lines in order to improve the reading of it. Mainly in the "for (loop) command thanks to a tip learned in the @abbodi1406 scripts.
    And, of course learning every day with @MSMG. In addition to the solutions brought in the Toolkit script, he always answers some people asks that brings new doubts and new learning.

    2. In Inbox Apps:
    2.1. A detail was modified to indicate what is not present in the packs, before continuing with inboxapps integration.
    2.2. Fixed - A problem created by custom toolkit modifications by implementing the multi-selection system of inboxapps that repeated the final optimization that should be once for each index, but was repeating by the amount of apps selected times the quantity of indexes. As much as the whole process was automatic, this caused a very accentuated delay.

    3. Added - Condition for integration of Sun Valley Icons Skin Pack only for Builds below 21348.

    4. Some minor code upgrade on Tweaks and...
    4.1. Added - Simple Bypass Hardware Requisites Checking for InPlace Upgrade.

    5. WMP Skin for x64 now apply in WMP Program Files(x86) folder too.

    6. Adicionada uma opção de Custom PreSet para "Windows 7 Components Experience Edition" baseada na lista de componentes a serem mantido que o MSMG disponibilizou.

    7. Fixed Edge Chromium Integration for w81.

    OBS: Supplementary information for Devs: After the implementation of Windows 11 support I found some bugs related to the use of subsequent conditions of "not equal" associated with the use of "else" in the same block (NEQ NEQ ELSE). It does not work.
    Ex: The use (neq w10 neq w11) so that a block block could work for both W7 and W81 and an "else" for when w10 or w11, but this does not work:

    In this case, what comes in the else block is completely ignored not being executed. I suppose a conflict occurs.
    Code:
           if "%SelectedSourceOS%" neq "w10" if "%SelectedSourceOS%" neq "w11" (
               echo.Performing Tasks for w7 or w81...
           ) else (
               echo.Performing Tasks for w10 or w11...
           )
           
    To correct this, the possible way is just as below.
    Code:
           if "%SelectedSourceOS%" neq "w10" if "%SelectedSourceOS%" neq "w11" (
               echo.Performing Tasks for w7 or w81...
           )
           if "%SelectedSourceOS%" neq "w7" if "%SelectedSourceOS%" neq "w81" (
               echo.Performing Tasks for w10 or w11...
           )
           

    8. VirtualCreate_ImageIndexEditions.zip (2021-09-20 updated with @abbodi1406 "uup-converter-wimlib-72u"

    Merge made with the fourth version of the Official Toolkit 11.7 on the day 2021-08-23.

    1. Fixed "Sun Valley Icons Skin" integration:
    * for w7 and w81, thnks to @Bira suggestion.
    * for w10 build 18362 by changing geq "18363" to geq "18362".
    * Added "Windows Photo Viewer Skin" and "Icons Skin" in the Custom Integrate for W7 and W81 menu.
    NOTE: "Windows Media Player Skin" break Windows Media Player for W7 and W81.
    Thnks by tests made by @Bira.

    2. Added the condition to Integrate Windows Portable Devices
    :: Checking whether exists N Editions supported for Windows Portable Devices Integration are selected as source.
    If only non-N editions are selected, the following message will be displayed:

    3. VirtualCreate_ImageIndexEditions.zip (2021-08-24 updated with @abbodi1406 "uup-converter-wimlib-69"


    Thnks!
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...