abbodi1406's Batch Scripts Repo

Discussion in 'Scripting' started by abbodi1406, May 4, 2017.

  1. W7W10

    W7W10 MDL Member

    May 11, 2023
    190
    34
    10
    Thank you.
     
  2. W7W10

    W7W10 MDL Member

    May 11, 2023
    190
    34
    10
    It's just the mistake. Sorry for that.
     
  3. W7W10

    W7W10 MDL Member

    May 11, 2023
    190
    34
    10
    Thank you.
     
  4. W7W10

    W7W10 MDL Member

    May 11, 2023
    190
    34
    10
    I thank everyone who helped me realize my mistakes.
     
  5. ksrgroup

    ksrgroup MDL Novice

    Dec 29, 2010
    22
    13
    0
    #3565 ksrgroup, Jan 16, 2025
    Last edited: Aug 25, 2025
    .
     
  6. hendra1984

    hendra1984 MDL Novice

    Oct 20, 2010
    3
    1
    0
    thank you this what i need
     
  7. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    18,564
    99,709
    340
  8. redsunset

    redsunset MDL Member

    Mar 16, 2022
    196
    97
    10
    #3568 redsunset, Feb 1, 2025
    Last edited: Feb 1, 2025
    Can multiple language packs generated by YAOCTRU be stacked together in the same folder so that the setup.exe from one language would not use the language specific cabs from another? for example SetupLanguagePack.x64.bg-BG.exe should not use pl-PL i641045.cab.

    edit: looks like it works fine
     
  9. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    18,564
    99,709
    340
    Another small fix update (the incomplete check prevented detecting Office 2010 on Windows XP)
    https://github.com/gravesoft/CAS
     
  10. asdddsa101

    asdddsa101 MDL Member

    Feb 11, 2021
    143
    65
    10
    @abbodi1406
    Does need to update W10UI to respond to this?
    https://support.microsoft.com/en-us...-manager-d4064779-0e4e-43ac-b2ce-24f434fcfa0f

    Copy the updated files from the "boot.wim\$index\Windows\Boot" folder end with "_EX" to Setup Media.

    Core part in "Make2023BootableMedia.ps1"
    Code:
    $ex_bins_path = $bootWimMount + "\Windows\Boot\EFI_EX"
    $ex_fonts_path = $bootWimMount + "\Windows\Boot\FONTS_EX"
    $ex_dvd_path = $bootWimMount + "\Windows\Boot\DVD_EX"
    
    Copy-Item -Path $ex_bins_path"\bootmgr_EX.efi" -Destination $global:Temp_Media_To_Update_Path"\bootmgr.efi" -Force -ErrorAction stop | Out-Null
    Copy-Item -Path $ex_bins_path"\bootmgfw_EX.efi" -Destination $global:Temp_Media_To_Update_Path"\efi\boot\bootx64.efi" -Force -ErrorAction stop | Out-Null
    Copy-Item -Path $ex_dvd_path"\EFI\en-US\efisys_EX.bin" -Destination $global:Temp_Media_To_Update_Path"\efi\microsoft\boot\efisys_ex.bin" -Force -ErrorAction stop | Out-Null
    New-Item -ItemType Directory -Path $global:Temp_Media_To_Update_Path"\efi\microsoft\boot\fonts_ex" -Force | Out-Null
    Copy-Item -Path $ex_fonts_path"\*" -Destination $global:Temp_Media_To_Update_Path"\efi\microsoft\boot\fonts_ex\" -Force -ErrorAction stop | Out-Null
    Get-ChildItem -Path $global:Temp_Media_To_Update_Path"\efi\microsoft\boot\fonts_ex" -Filter "*_EX.ttf" | Rename-Item -NewName { $_.Name -replace '_EX', '' } -Force -ErrorAction stop
    Copy-Item -Path $global:Temp_Media_To_Update_Path"\efi\microsoft\boot\fonts_ex\*" -Destination $global:Temp_Media_To_Update_Path"\efi\microsoft\boot\fonts" -Force -ErrorAction stop | Out-Null
    Remove-Item -Path $global:Temp_Media_To_Update_Path"\efi\microsoft\boot\fonts_ex" -Recurse -Force -ErrorAction stop | Out-Null
    
     
  11. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    18,564
    99,709
    340
    If they don't enforce it yet, neither W10UI will do

    but i could add it as part of "UpdtBootFiles" option
     
  12. Jens1976

    Jens1976 MDL Novice

    Apr 23, 2016
    12
    9
    0
    I would include this as a separate point. Otherwise it will only cause problems if someone doesn't remember it
     
  13. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    18,564
    99,709
    340
  14. Jens1976

    Jens1976 MDL Novice

    Apr 23, 2016
    12
    9
    0
    So, the first two tests with W10UI are done. If you have an ISO built with KB5050009 (2894), then it runs without errors. However, if you build the same ISO with KB5050094 (3037), an error (source not found) occurs when integrating KB5043080 (1742) into the boot.wim. The script then continues to run. The error may also be due to the fact that I activated UPtBootFiles during the second test (CA2023). I'll have to test again later. I can provide the logs if required.
     
  15. adric

    adric MDL Expert

    Jul 30, 2009
    1,525
    1,719
    60
    #3575 adric, Feb 7, 2025
    Last edited: Feb 8, 2025
    I'm a bit confused about SafeOS updates. Does W10UI apply this update to the Winre.wim in C:\Recovery\WindowsRE\?
    The update seems to be ignored by W10UI so I don't know where it would get applied unless it's for adding to an iso
    which I don't use.
     
  16. Jens1976

    Jens1976 MDL Novice

    Apr 23, 2016
    12
    9
    0
    After further tests I can say that the error with KB5043080 (1742) was caused by something else, it had nothing to do with the script. But one question arises: the script first executes /StartComponentCleanup and then /StartComponentCleanup /Resetbase. Can't this be done all at once? /StartComponentCleanup /Resetbase contains /StartComponentCleanup? Or not?
     
  17. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    18,564
    99,709
    340
    @Jens1976
    Thanks for testing

    the issue with boot.wim is not new, and it depends on what current LCU is installed and if some cleanup is performed
    mostly, it's not very effective error

    since Win10 1709, the double commands are needed to work with SupersededActions registry
    however in Win11 24H2, cleanup behavior changed a little, but it's still best to keep both commands
     
  18. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    18,564
    99,709
    340
    No
    winre.wim is only updated for install.wim

    can't you see the drama and frequent updates / errors for applying SafeOS updates to current OS active winre.wim?
    it's not clean or easy, or possible all the time
     
  19. TS2008

    TS2008 MDL Junior Member

    Mar 24, 2015
    93
    95
    0
    I just don't know if it really makes sense with the 24H2.

    Code:
    ==============================================================
    
    KB5043080 - 1742 (/StartComponentCleanup)
    
    The following actions will be performed:
        Regeneration Candidates: 0
        Removal Candidates: 5716
        Superseded/LDR (Delta Compression) Candidates: 962
        Null-Delta Compression Candidates:
            Mutable file Candidates: 253
            Boot-Recovery Candidates: 995
        Backup regeneration candidates: 0
        Deletion Candidates (Non Driver): 0
        Driver Deletion Candidates: 0
        WinSxS Orphaned Objects Candidates: 0
        Manifests Orphaned Objects Candidates: 0
      
    No Errors.
    
    ==============================================================
      
    KB5043080 - 1742 (/StartComponentCleanup /ResetBase)
    
    
        The following actions will be performed:
        Regeneration Candidates: 0
        Removal Candidates: 0
        Superseded/LDR (Delta Compression) Candidates: 0
        Null-Delta Compression Candidates:
            Mutable file Candidates: 0
            Boot-Recovery Candidates: 2
        Backup regeneration candidates: 0
        Deletion Candidates (Non Driver): 0
        Driver Deletion Candidates: 0
        WinSxS Orphaned Objects Candidates: 0
        Manifests Orphaned Objects Candidates: 0
    
    Error                 CBS    Failed to load C:\Users\***\AppData\Local\Temp\SSS_3684e74f167adb0101000000b835a805\cmsofflineservicing.dll.: HRESULT_FROM_WIN32(127)
    Info                  CBS    Warning: Failed to clean up noncommitted transactions. [HRESULT = 0x8007007f - ERROR_PROC_NOT_FOUND]
    
    No further cleaning.
    
    ==============================================================
    
    KB5050094 - 3037 (/StartComponentCleanup)
    
    The following actions will be performed:
        Regeneration Candidates: 0
        Removal Candidates: 0
        Superseded/LDR (Delta Compression) Candidates: 168
        Null-Delta Compression Candidates:
            Mutable file Candidates: 18
            Boot-Recovery Candidates: 354
        Backup regeneration candidates: 0
        Deletion Candidates (Non Driver): 0
        Driver Deletion Candidates: 0
        WinSxS Orphaned Objects Candidates: 0
        Manifests Orphaned Objects Candidates: 0
      
    No Errors.
      
    ==============================================================
    
    KB5050094 - 3037 (/StartComponentCleanup /ResetBase)
    
    No plan
    
    Error                 CBS    Failed to load C:\Users\***\AppData\Local\Temp\SSS_46fecc07197adb01010000005434f02c\cmsofflineservicing.dll.: HRESULT_FROM_WIN32(127)
    Info                  CBS    Warning: Failed to clean up noncommitted transactions. [HRESULT = 0x8007007f - ERROR_PROC_NOT_FOUND]
    
    No further cleaning; stops at 70%. (Retained earlier scavenge flags 103 and skipped Scavenge)
    
    ==============================================================
    Resetting OS image base...
    ==============================================================
    
    /StartComponentCleanup
    
    No plan - No further cleaning (Retained earlier scavenge flags 103 and skipped Scavenge.)
    
    Error                 CBS    Failed to load C:\Users\***\AppData\Local\Temp\SSS_46fecc07197adb01010000005434f02c\cmsofflineservicing.dll.: HRESULT_FROM_WIN32(127)
    Info                  CBS    Warning: Failed to clean up noncommitted transactions. [HRESULT = 0x8007007f - ERROR_PROC_NOT_FOUND]
    
    /StartComponentCleanup /ResetBase
    
    No plan - No further cleaning (Retained earlier scavenge flags 103 and skipped Scavenge.)
    
    Error                 CBS    Failed to load C:\Users\***\AppData\Local\Temp\SSS_46fecc07197adb01010000005434f02c\cmsofflineservicing.dll.: HRESULT_FROM_WIN32(127)
    Info                  CBS    Warning: Failed to clean up noncommitted transactions. [HRESULT = 0x8007007f - ERROR_PROC_NOT_FOUND]
    
    ==============================================================
    
    

    /StartComponentCleanup /ResetBase after /StartComponentCleanup ends only with a non-fatal error, after the scavenger skipped any further action due to the scavenge flags. Just /StartComponentCleanup does any usefull.

    But apart from the cleanup, W10UI works so far. Even with the CA2011 revoked, a clean installation and an inplace upgrade works fine. No errors found.
    Testet with W10UI 10.50.
     
  20. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    54,761
    125,024
    450
    Code:
    [convert-UUP]
    AutoStart    =1
    AddUpdates   =1
    Cleanup      =1
    ResetBase    =1
    NetFx3       =1
    StartVirtual =0
    wim2esd      =0
    wim2swm      =0
    SkipISO      =0
    SkipWinRE    =0
    LCUwinre     =0
    LCUmsuExpand =0
    UpdtBootFiles=1
    ForceDism    =0
    RefESD       =0
    SkipLCUmsu   =0
    SkipEdge     =0
    AutoExit     =0
    DisableUpdatingUpgrade=0
    AddDrivers   =0
    Drv_Source   =\Drivers
    
    [Store_Apps]
    SkipApps     =0
    AppsLevel    =0
    StubAppsFull =0
    CustomList   =0
    
    [create_virtual_editions]
    vUseDism     =1
    vAutoStart   =0
    vDeleteSource=0
    vPreserve    =0
    vwim2esd     =0
    vwim2swm     =0
    vSkipISO     =0
    vAutoEditions=
    
    Code:
    
    === Running UUP Converter v111 ===
    
    === Checking UUP Info . . .
    
    === Configured Options . . .
    
    AutoStart 1
    AddUpdates 1
    Cleanup
    ResetBase
    LCUmsuExpand
    DisableUpdatingUpgrade
    NetFx3
    UpdtBootFiles
    
    === Parsing Apps CompDB . . .
    
    === Preparing Reference ESDs . . .
    
    HyperV-OptionalFeature-VirtualMachinePlatform-Client-Disabled-FOD-Package-amd64
    Microsoft-Edge-WebView-FOD-Package-amd64
    Microsoft-OneCore-ApplicationModel-Sync-Desktop-FOD-Package-amd64
    Microsoft-OneCore-DirectX-Database-FOD-Package-amd64
    Microsoft-Windows-DirectoryServices-ADAM-Client-FOD-Package-amd64
    Microsoft-Windows-DirectoryServices-ADAM-Client-FOD-Package-wow64
    Microsoft-Windows-EnterpriseClientSync-Host-FOD-Package-amd64
    Microsoft-Windows-EnterpriseClientSync-Host-FOD-Package-wow64
    Microsoft-Windows-Ethernet-Client-Intel-E1i68x64-FOD-Package-amd64
    Microsoft-Windows-Ethernet-Client-Intel-E2f68-FOD-Package-amd64
    Microsoft-Windows-Ethernet-Client-Realtek-Rtcx21x64-FOD-Package-amd64
    Microsoft-Windows-Ethernet-Client-Vmware-Vmxnet3-FOD-Package-amd64
    Microsoft-Windows-FoDMetadata-Package
    Microsoft-Windows-Hello-Face-Package-amd64
    Microsoft-Windows-InternetExplorer-Optional-Package-amd64
    Microsoft-Windows-Kernel-LA57-FoD-Package-amd64
    Microsoft-Windows-LanguageFeatures-Basic-en-us-Package-amd64
    Microsoft-Windows-LanguageFeatures-Handwriting-en-us-Package-amd64
    Microsoft-Windows-LanguageFeatures-OCR-en-us-Package-amd64
    Microsoft-Windows-LanguageFeatures-Speech-en-us-Package-amd64
    Microsoft-Windows-LanguageFeatures-TextToSpeech-en-us-Package-amd64
    Microsoft-Windows-MediaPlayer-Package-amd64
    Microsoft-Windows-MediaPlayer-Package-wow64
    Microsoft-Windows-Notepad-System-FoD-Package-amd64
    Microsoft-Windows-Notepad-System-FoD-Package-wow64
    Microsoft-Windows-PowerShell-ISE-FOD-Package-amd64
    Microsoft-Windows-PowerShell-ISE-FOD-Package-wow64
    Microsoft-Windows-Printing-PMCPPC-FoD-Package-amd64
    Microsoft-Windows-ProjFS-OptionalFeature-FOD-Package-amd64
    Microsoft-Windows-SenseClient-Fod-Package-amd64
    Microsoft-Windows-SimpleTCP-FOD-Package-amd64
    Microsoft-Windows-SmbDirect-FOD-Package-amd64
    Microsoft-Windows-StepsRecorder-Package-amd64
    Microsoft-Windows-StepsRecorder-Package-wow64
    Microsoft-Windows-TabletPCMath-Package-amd64
    Microsoft-Windows-Telnet-Client-FOD-Package-amd64
    Microsoft-Windows-TerminalServices-AppServer-Client-FOD-Package-amd64
    Microsoft-Windows-TerminalServices-AppServer-Client-FOD-Package-wow64
    Microsoft-Windows-TFTP-Client-FOD-Package-amd64
    Microsoft-Windows-VBSCRIPT-FoD-Package-amd64
    Microsoft-Windows-VBSCRIPT-FoD-Package-wow64
    Microsoft-Windows-Wallpaper-Content-Extended-FoD-Package-amd64
    Microsoft-Windows-Wifi-Client-Broadcom-Bcmpciedhd63-FOD-Package-amd64
    Microsoft-Windows-Wifi-Client-Broadcom-Bcmwl63a-FOD-Package-amd64
    Microsoft-Windows-Wifi-Client-Broadcom-Bcmwl63al-FOD-Package-amd64
    Microsoft-Windows-Wifi-Client-Intel-Netwbw02-FOD-Package-amd64
    Microsoft-Windows-Wifi-Client-Intel-Netwew00-FOD-Package-amd64
    Microsoft-Windows-Wifi-Client-Intel-Netwew01-FOD-Package-amd64
    Microsoft-Windows-Wifi-Client-Intel-Netwlv64-FOD-Package-amd64
    Microsoft-Windows-Wifi-Client-Intel-Netwns64-FOD-Package-amd64
    Microsoft-Windows-Wifi-Client-Intel-Netwsw00-FOD-Package-amd64
    Microsoft-Windows-Wifi-Client-Intel-Netwtw02-FOD-Package-amd64
    Microsoft-Windows-Wifi-Client-Intel-Netwtw04-FOD-Package-amd64
    Microsoft-Windows-Wifi-Client-Intel-Netwtw06-FOD-Package-amd64
    Microsoft-Windows-Wifi-Client-Intel-Netwtw08-FOD-Package-amd64
    Microsoft-Windows-Wifi-Client-Intel-Netwtw10-FOD-Package-amd64
    Microsoft-Windows-Wifi-Client-Marvel-Mrvlpcie8897-FOD-Package-amd64
    Microsoft-Windows-Wifi-Client-Qualcomm-Athw8x-FOD-Package-amd64
    Microsoft-Windows-Wifi-Client-Qualcomm-Athwnx-FOD-Package-amd64
    Microsoft-Windows-Wifi-Client-Qualcomm-Qcamain10x64-FOD-Package-amd64
    Microsoft-Windows-Wifi-Client-Ralink-Netr28x-FOD-Package-amd64
    Microsoft-Windows-Wifi-Client-Realtek-Rtl8192se-FOD-Package-amd64
    Microsoft-Windows-Wifi-Client-Realtek-Rtwlane-FOD-Package-amd64
    Microsoft-Windows-Wifi-Client-Realtek-Rtwlane01-FOD-Package-amd64
    Microsoft-Windows-Wifi-Client-Realtek-Rtwlane13-FOD-Package-amd64
    Microsoft-Windows-WinOcr-FOD-Package-amd64
    Microsoft-Windows-WinOcr-FOD-Package-wow64
    Microsoft-Windows-WMIC-FoD-Package-amd64
    Microsoft-Windows-WMIC-FoD-Package-wow64
    OpenSSH-Client-Package-amd64
    
    === Creating Setup Media Layout . . .
    
    === Creating install.wim . . .
    
    Using LZX compression with 16 threads
    Archiving file data: 7100 MiB of 7100 MiB (100%) done
    
    === Updating install.wim / 1 image{s} . . .
    
    1/7: Windows11.0-KB5043080-x64.msu [Combined UUP]
    2/7: Windows11.0-KB5050090-x64.msu [Combined UUP]
    3/7: windows11.0-kb5037898-x64.cab [Enablement]
    4/7: Windows11.0-KB5043113-x64_inout.cab [SSU]
    5/7: Windows11.0-KB5050089-x64_inout.cab [SSU]
    6/7: Windows11.0-KB5050758-x64.cab [Setup DU]
    7/7: Windows11.0-KB5053117-x64.cab [SafeOS DU]
    8/8: Windows11.0-KB5043080-x64.wim [LCU]
    9/9: Windows11.0-KB5050090-x64.wim [LCU]
    
    === Servicing Index: 1
    
    Deployment Image Servicing and Management tool
    Version: 10.0.26100.1
    
    Mounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    === Adding Microsoft Edge . . .
    
    Deployment Image Servicing and Management tool
    Version: 10.0.26100.1
    
    Image Version: 10.0.26100.1
    
    The operation completed successfully.
    
    === Adding Apps . . .
    
    Microsoft.NET.Native.Framework.x64.2.2
    Microsoft.NET.Native.Runtime.x64.2.2
    Microsoft.Services.Store.Engagement.x64
    Microsoft.UI.Xaml.x64.2.7
    Microsoft.UI.Xaml.x64.2.8
    Microsoft.VCLibs.x64.14.00
    Microsoft.VCLibs.x64.14.00.Desktop
    Microsoft.WindowsAppRuntime.x64.1.3
    Microsoft.WindowsAppRuntime.x64.1.4
    Microsoft.WindowsStore_8wekyb3d8bbwe
    Microsoft.StorePurchaseApp_8wekyb3d8bbwe
    Microsoft.BingNews_8wekyb3d8bbwe
    Microsoft.BingSearch_8wekyb3d8bbwe
    Microsoft.BingWeather_8wekyb3d8bbwe
    Microsoft.MicrosoftSolitaireCollection_8wekyb3d8bbwe
    Microsoft.ZuneMusic_8wekyb3d8bbwe
    Microsoft.WindowsAlarms_8wekyb3d8bbwe
    Microsoft.ApplicationCompatibilityEnhancements_8wekyb3d8bbwe
    Microsoft.WindowsCalculator_8wekyb3d8bbwe
    Microsoft.WindowsNotepad_8wekyb3d8bbwe
    Microsoft.WindowsTerminal_8wekyb3d8bbwe
    Microsoft.WindowsFeedbackHub_8wekyb3d8bbwe
    Microsoft.GetHelp_8wekyb3d8bbwe
    Microsoft.WindowsSoundRecorder_8wekyb3d8bbwe
    Microsoft.MicrosoftOfficeHub_8wekyb3d8bbwe
    Microsoft.ScreenSketch_8wekyb3d8bbwe
    Microsoft.MicrosoftStickyNotes_8wekyb3d8bbwe
    Microsoft.Todos_8wekyb3d8bbwe
    Microsoft.XboxSpeechToTextOverlay_8wekyb3d8bbwe
    Microsoft.GamingApp_8wekyb3d8bbwe
    Microsoft.XboxGamingOverlay_8wekyb3d8bbwe
    Microsoft.XboxIdentityProvider_8wekyb3d8bbwe
    Microsoft.Xbox.TCUI_8wekyb3d8bbwe
    Microsoft.Windows.Photos_8wekyb3d8bbwe
    Microsoft.PowerAutomateDesktop_8wekyb3d8bbwe
    Microsoft.WindowsCamera_8wekyb3d8bbwe
    Microsoft.DesktopAppInstaller_8wekyb3d8bbwe
    Microsoft.Paint_8wekyb3d8bbwe
    Microsoft.WebMediaExtensions_8wekyb3d8bbwe
    Microsoft.RawImageExtension_8wekyb3d8bbwe
    Microsoft.HEIFImageExtension_8wekyb3d8bbwe
    Microsoft.HEVCVideoExtension_8wekyb3d8bbwe
    Microsoft.VP9VideoExtensions_8wekyb3d8bbwe
    Microsoft.AV1VideoExtension_8wekyb3d8bbwe
    Microsoft.AVCEncoderVideoExtension_8wekyb3d8bbwe
    Microsoft.MPEG2VideoExtension_8wekyb3d8bbwe
    Microsoft.WebpImageExtension_8wekyb3d8bbwe
    MicrosoftWindows.Client.WebExperience_cw5n1h2txyewy
    MicrosoftWindows.CrossDevice_cw5n1h2txyewy
    Microsoft.SecHealthUI_8wekyb3d8bbwe
    Clipchamp.Clipchamp_yxz26nhyzhsrt
    MicrosoftCorporationII.QuickAssist_8wekyb3d8bbwe
    Microsoft.OutlookForWindows_8wekyb3d8bbwe
    MSTeams_8wekyb3d8bbwe
    Microsoft.Windows.DevHome_8wekyb3d8bbwe
    Microsoft.YourPhone_8wekyb3d8bbwe
    MicrosoftCorporationII.MicrosoftFamily_8wekyb3d8bbwe
    
    Deployment Image Servicing and Management tool
    Version: 10.0.26100.1
    
    Saving image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    === Adding Updates . . .
    
    Deployment Image Servicing and Management tool
    Version: 10.0.26100.1
    
    Image Version: 10.0.26100.1
    
    Processing 1 of 1 - Adding package Package_for_ServicingStack_3072~31bf3856ad364e35~amd64~~26100.3072.1.0
    [==========================100.0%==========================]
    The changes due to package Package_for_ServicingStack_3072 requires the current servicing session to be reloaded.
    All the packages will be processed again.
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.26100.1
    
    Image Version: 10.0.26100.1
    
    Processing 1 of 1 - Adding package Package_for_KB5037898~31bf3856ad364e35~amd64~~26100.380.1.2
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.26100.1
    
    Image Version: 10.0.26100.1
    
    Processing 1 of 1 - Adding package Package_for_RollupFix~31bf3856ad364e35~amd64~~26100.1742.1.10
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.26100.1
    
    Image Version: 10.0.26120.1742
    
    Processing 1 of 1 - Adding package Package_for_RollupFix~31bf3856ad364e35~amd64~~26100.3073.1.1
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.26100.1
    
    Image Version: 10.0.26120.3073
    
    [==========================100.0%==========================]
    The operation completed successfully.
    
    === Processing NetFx3 feature
    
    Deployment Image Servicing and Management tool
    Version: 10.0.26100.1
    
    Image Version: 10.0.26120.3073
    
    Enabling feature(s)
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.26100.1
    
    Image Version: 10.0.26120.3073
    
    Processing 1 of 2 - Adding package Package_for_RollupFix~31bf3856ad364e35~amd64~~26100.1742.1.10
    [==========================100.0%==========================]
    Processing 2 of 2 - Adding package Package_for_RollupFix~31bf3856ad364e35~amd64~~26100.3073.1.1
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.26100.1
    
    Saving image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.26100.1
    
    Image File : F:\UUP_Converter_Test\ISOFOLDER\sources\install.wim
    Image Index : 1
    Unmounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    === Rebuilding install.wim . . .
    
    "ISOFOLDER\sources\install.wim" original size: 6152805 KiB
    Using LZX compression with 16 threads
    Archiving file data: 10 GiB of 10 GiB (100%) done
    "ISOFOLDER\sources\install.wim" optimized size: 4746156 KiB
    Space saved: 1406648 KiB
    
    === Adding setup dynamic update{s} . . .
    
    Windows11.0-KB5050758-x64.cab
    
    === Creating winre.wim . . .
    
    Using LZX compression with 16 threads
    Archiving file data: 1212 MiB of 1212 MiB (100%) done
    
    === Updating winre.wim / 1 image{s} . . .
    
    Deployment Image Servicing and Management tool
    Version: 10.0.26100.1
    
    Mounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.26100.1
    
    Image Version: 10.0.26100.1
    
    Processing 1 of 1 - Adding package Package_for_ServicingStack_3072~31bf3856ad364e35~amd64~~26100.3072.1.0
    [==========================100.0%==========================]
    The changes due to package Package_for_ServicingStack_3072 requires the current servicing session to be reloaded.
    All the packages will be processed again.
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.26100.1
    
    Image Version: 10.0.26100.1
    
    Processing 1 of 1 - Adding package Package_for_SafeOSDU~31bf3856ad364e35~amd64~~26100.3031.1.1
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.26100.1
    
    Saving image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    === Adding LCU for boot.wim . . .
    
    Deployment Image Servicing and Management tool
    Version: 10.0.26100.1
    
    Image Version: 10.0.26100.3031
    
    Processing 1 of 1 - Removing package WinPE-Rejuv-Package~31bf3856ad364e35~amd64~en-US~10.0.26100.1
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.26100.1
    
    Image Version: 10.0.26100.3031
    
    Processing 1 of 1 - Removing package WinPE-Rejuv-Package~31bf3856ad364e35~amd64~~10.0.26100.1
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.26100.1
    
    Image Version: 10.0.26100.1
    
    Processing 1 of 1 - Adding package Package_for_RollupFix~31bf3856ad364e35~amd64~~26100.1742.1.10
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.26100.1
    
    Image Version: 10.0.26100.1742
    
    Processing 1 of 1 - Adding package Package_for_RollupFix~31bf3856ad364e35~amd64~~26100.3073.1.1
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.26100.1
    
    Image Version: 10.0.26100.3073
    
    Processing 1 of 1 - Adding package Package_for_KB5037898~31bf3856ad364e35~amd64~~26100.380.1.2
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.26100.1
    
    Image Version: 10.0.26100.3073
    
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.26100.1
    
    Saving image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.26100.1
    
    Image File : F:\UUP_Converter_Test\temp\winre.wim
    Image Index : 1
    Unmounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Using LZX compression with 16 threads
    Archiving file data: 1352 MiB of 1352 MiB (100%) done
    
    === Adding winre.wim to install.wim . . .
    
    === Creating boot.wim . . .
    
    === Rebuilding boot.wim . . .
    
    "ISOFOLDER\sources\boot.wim" original size: 982824 KiB
    Using LZX compression with 16 threads
    Archiving file data: 1422 MiB of 1422 MiB (100%) done
    "ISOFOLDER\sources\boot.wim" optimized size: 606042 KiB
    Space saved: 376781 KiB
    
    === Removing temporary files . . .
    
    === Creating ISO . . .
    
    OSCDIMG 2.56 CD-ROM and DVD-ROM Premastering Utility
    Copyright (C) Microsoft, 1993-2012. All rights reserved.
    Licensed only for producing Microsoft authorized content.
    
    
    Scanning source tree (500 files in 45 directories)
    Scanning source tree complete (965 files in 90 directories)
    
    Computing directory information complete
    
    Image file is 6301089792 bytes (before optimization)
    
    Writing 965 files in 90 directories to 26120.3073.250125-1428.GE_RELEASE_SVC_BETAFLT_PROD1_CLIENTPRO_OEMRET_X64FRE_EN-US.ISO
    
    100% complete
    
    Storage optimization saved 9 files, 522240 bytes (0% of image)
    
    After optimization, image file is 6302732288 bytes
    Space saved because of embedding, sparseness or optimization = 522240
    
    Done.
    
    Finished.
    Press 0 or q to exit.
    
    
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...