abbodi1406's Batch Scripts Repo

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

  1. KleineZiege

    KleineZiege MDL Expert

    Dec 11, 2018
    1,850
    2,105
    60
    one question should the EP 23H2 KB5027397 not be recognized as 22631 with W10UI_10.37f

    Code:
    Installing updates...
    ============================================================
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Image Version: 10.0.22621.1
    
    Processing 1 of 2 - Adding package Package_for_KB5027397~31bf3856ad364e35~amd64~~22621.2355.1.1
    [==========================100.0%==========================]
    Processing 2 of 2 - Adding package Package_for_DotNetRollup_481~31bf3856ad364e35~amd64~~10.0.9206.1
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Image Version: 10.0.22621.1
    
    Processing 1 of 1 - Adding package Package_for_RollupFix~31bf3856ad364e35~amd64~~22621.2715.1.16
     
  2. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,201
    90,743
    340
    Recognized how? 22631 is not real version
    you get "Image Version: 10.0.22631.xxx" only after both LCU and KB5027397 are installed

    deja vu Windows 10 EKBs :)
     
  3. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,201
    90,743
    340
    #2683 abbodi1406, Nov 15, 2023
    Last edited: Nov 21, 2023
    (OP)
    # uup-converter v97

    * convert-UUP:

    - Prettyfied the progress with colored messages, instead the static blue background

    - Added a workaround to disable/restore cmd.exe console "Quick Edit Mode", to avoid accidental clicks during progress

    - The above fix will not be applied if convert-UUP.cmd is called with path to external UUP folder (or drag and drop folder on script). A warning will be displayed instead.

    - Create basic ErrorLog text file to keep track of errors during progress

    - Updated "6 - Configuration Options" menu choice with missing options

    - Reduced and unified repeated (shared) code between similar functions

    - Improved updating process to minimize image mounting/unmounting

    - Changed Win11 23H2 ISO label to 23H2_NI_RELEASE

    - Changed Exit prompt to "Press 0 or q to exit."

    - Changed "Creating Virtual Editions" order:
    if "Updating install.wim" is executed -> creation occur during the updating process (config option UseDism has no effect)
    if "Updating install.wim" is not executed -> creation occur at the end as previously (config option UseDism control the method)
    example new execution order, if DisableUpdatingUpgrade is not active:
    mount index 1 (Core)
    update Home edition, save image
    create Home SL virtual edition (if selected), append image
    upgrade to Pro edition, append image
    create Pro virtual editions (Enterprise, Education, Workstation...), append images
    unmount index 1

    example new execution order, if DisableUpdatingUpgrade is active:
    mount index 1 (Core)
    update Home edition, save image
    create Home SL virtual edition (if selected), append image
    unmount index 1
    mount index 2 (Professional)
    update Pro edition, save image
    create Pro virtual editions (Enterprise, Education, Workstation...), append images
    unmount index 2

    * create_virtual_editions:

    - Readded and optimized the old Dism.exe code as additional and default creation method

    - Added config option "UseDism" to select between Dism.exe clean-way and the Registry hacky-way

    - If host OS / ADK requirements are not met, or the source file is install.esd, UseDism will be auto disabled

    - Moved Registry method data to bin\veData.cmd script (loaded on demand)

    - Added support to create IoTEnterpriseK for builds 25982+

    - Added support to create IoTEnterpriseSK for builds 25193+ only via Dism.exe method (whenever LTSC 2024 is released)

    - Added the same pretty progress and quick edit workaround as converter

    - The Editions will be always created in the same predfined order, regardless the order of AutoEditions or Choose Menu:
    Code:
    Enterprise editions (non LTSCs) > Education editions > Workstation > SE
    N editions follows in same order > Home Single Language always the last


    many thanks to @Windows_Addict for quick edit / color code, and suggestions

    special thanks to @Paul Mercer and @Enthousiast for testing
     
  4. Paul Mercer

    Paul Mercer MDL Expert

    Apr 6, 2018
    1,941
    4,162
    60
    I have the same question

    what's pros and cons between both of them? if it's just the info in the ReadMe.html then I think "UseDism=1" could be enabled by default without any issue

    is sandbox / WSL working fine now with "UseDism=1" and "DisableUpdatingUpgrade=0" on Canary builds or it's still broken? If it's still broken then there's no much difference between DISM and old registry hack
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  5. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,201
    90,743
    340
    I don't know, any test is welcome

    UseDism is cleaner and official, it apply more registry changes (ProductPolicy blob, Settings Management Infrastructure SMI schema), and doesn't need continous updating for changed registry values between builds

    the only con for UseDism is the time/resources needed for mounting/unmounting wim image
    MS refreshed ESDs (and probably MVS ISOs) are created this way (you can notice the editions xml files in Windows directory)
     
  6. Paul Mercer

    Paul Mercer MDL Expert

    Apr 6, 2018
    1,941
    4,162
    60
    got it, so the difference is real, thanks
    I definitely prefer "UseDism=1" by default, but I know you are always trying to lower the conversion time so I don't know what is best for all users

    someone should try sandbox thing with "UseDism=1", if it's still broken then actually it's not a night and day difference
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  7. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    49,656
    103,437
    450
    #2687 Enthousiast, Nov 15, 2023
    Last edited: Nov 15, 2023
    uup-converter-97beta

    Just exits after creating the temp folder with uups.esd.txt inside.

    Code:
    [convert-UUP]
    AutoStart    =1
    AddUpdates   =1
    Cleanup      =1
    ResetBase    =1
    NetFx3       =1
    StartVirtual =1
    wim2esd      =0
    wim2swm      =0
    SkipISO      =0
    SkipWinRE    =0
    LCUwinre     =0
    UpdtBootFiles=1
    ForceDism    =0
    RefESD       =0
    SkipLCUmsu   =0
    SkipEdge     =0
    AutoExit     =0
    DisableUpdatingUpgrade=0
    
    [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=
    
    Build 25997.1000.

    Now running in debug mode, this doesn't exit instantly.

    [​IMG]

    Now the ISO is created:
    Code:
    23590.1000.231110-1455.NI_PRERELEASE_CLIENTMULTI_X64FRE_EN-US.ISO
    Debug log
     
  8. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,201
    90,743
    340
    Could not find any error, except bad color format for create_virtual_editions.cmd (forgot to copy correct code from converter)

    try this, thanks
    http://put.nu/files/1BwBFEJ.7z
     
  9. Paul Mercer

    Paul Mercer MDL Expert

    Apr 6, 2018
    1,941
    4,162
    60
    I still have the same issue with this version

    Code:
    [convert-UUP]
    AutoStart    =1
    AddUpdates   =1
    Cleanup      =1
    ResetBase    =1
    NetFx3       =1
    StartVirtual =1
    wim2esd      =0
    wim2swm      =0
    SkipISO      =0
    SkipWinRE    =0
    LCUwinre     =1
    UpdtBootFiles=1
    ForceDism    =0
    RefESD       =0
    SkipLCUmsu   =0
    SkipEdge     =0
    AutoExit     =0
    DisableUpdatingUpgrade=0
    
    [Store_Apps]
    SkipApps     =0
    AppsLevel    =0
    StubAppsFull =0
    CustomList   =0
    
    [create_virtual_editions]
    vUseDism     =1
    vAutoStart   =1
    vDeleteSource=0
    vPreserve    =0
    vwim2esd     =0
    vwim2swm     =0
    vSkipISO     =0
    vAutoEditions=
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  10. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,201
    90,743
    340
    Both Canary and Dev?
    run debug mode if possible
     
  11. Paul Mercer

    Paul Mercer MDL Expert

    Apr 6, 2018
    1,941
    4,162
    60
    only Canary, I was trying to build it to check sandbox thing
    debug would take a lot of time for me and I already need to go to sleep unfortunately

    I just tried the same copy of the latest Canary UUP set and it works fine with uup-converter-wimlib-96r, so something is wrong with the new Beta version
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  12. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,201
    90,743
    340
    Hence Beta testing
    no ErrorLog txt created?

    try to run it from command prompt, to see what error when exit
     
  13. Paul Mercer

    Paul Mercer MDL Expert

    Apr 6, 2018
    1,941
    4,162
    60
    #2693 Paul Mercer, Nov 15, 2023
    Last edited: Nov 15, 2023
    can't see any log file

    tried it to run like
    Code:
    F:\1BwBFEJ>convert-UUP.cmd F:\1BwBFEJ\UUPs
    got this thing
    Code:
    === Running UUP Converter v97-beta ===
    
    97m" "pad""==""41 was unexpected at this time.
    
    F:\1BwBFEJ>
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  14. drew84

    drew84 MDL Expert

    Mar 13, 2014
    1,397
    2,377
    60
    Same here.. Debug window stays open, stating it will close when finished.... ISO Created 4.33GB as opposed to 4.22GB created earlier
    Debug_Log
     
  15. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,201
    90,743
    340
    Why the password?
     
  16. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,201
    90,743
    340
  17. Paul Mercer

    Paul Mercer MDL Expert

    Apr 6, 2018
    1,941
    4,162
    60
    #2697 Paul Mercer, Nov 16, 2023
    Last edited: Nov 16, 2023
    this one is working fine, conversion is in progress

    new visuals looks cute
    can't scroll text using mouse wheel inside console window for some reason

    about "UseDism=1" option: yes, it's way slower but works fine
    I think it should be enabled by default because I hope UUP dump users are not creating ISO with all possible editions

    Code:
    === Running UUP Converter v97-beta ===
    
    === Checking UUP Info . . .
    
    === Configured Options . . .
    
    AutoStart 1
    AddUpdates 1
    Cleanup
    ResetBase
    NetFx3
    StartVirtual
    LCUwinre
    UpdtBootFiles
    
    === Parsing Apps CompDB . . .
    
    === Preparing Reference ESDs . . .
    
    cabs_Containers-Dynamic-Image-FoD-Package-amd64
    cabs_Microsoft-OneCore-ApplicationModel-Sync-Desktop-FOD-Package-amd64
    cabs_Microsoft-OneCore-DirectX-Database-FOD-Package-amd64
    cabs_Microsoft-Windows-Ethernet-Client-Intel-E1i68x64-FOD-Package-amd64
    cabs_Microsoft-Windows-Ethernet-Client-Intel-E2f68-FOD-Package-amd64
    cabs_Microsoft-Windows-Ethernet-Client-Realtek-Rtcx21x64-FOD-Package-amd64
    cabs_Microsoft-Windows-Ethernet-Client-Vmware-Vmxnet3-FOD-Package-amd64
    cabs_Microsoft-Windows-FoDMetadata-Package
    cabs_Microsoft-Windows-Hello-Face-Package-amd64
    cabs_Microsoft-Windows-InternetExplorer-Optional-Package-amd64
    cabs_Microsoft-Windows-Kernel-LA57-FoD-Package-amd64
    cabs_Microsoft-Windows-LanguageFeatures-Basic-en-us-Package-amd64
    cabs_Microsoft-Windows-LanguageFeatures-Handwriting-en-us-Package-amd64
    cabs_Microsoft-Windows-LanguageFeatures-OCR-en-us-Package-amd64
    cabs_Microsoft-Windows-LanguageFeatures-Speech-en-us-Package-amd64
    cabs_Microsoft-Windows-LanguageFeatures-TextToSpeech-en-us-Package-amd64
    cabs_Microsoft-Windows-MediaPlayer-Package-amd64
    cabs_Microsoft-Windows-MediaPlayer-Package-wow64
    cabs_Microsoft-Windows-Notepad-System-FoD-Package-amd64
    cabs_Microsoft-Windows-Notepad-System-FoD-Package-wow64
    cabs_Microsoft-Windows-PowerShell-ISE-FOD-Package-amd64
    cabs_Microsoft-Windows-PowerShell-ISE-FOD-Package-wow64
    cabs_Microsoft-Windows-Printing-PMCPPC-FoD-Package-amd64
    cabs_Microsoft-Windows-ProjFS-OptionalFeature-FOD-Package-amd64
    cabs_Microsoft-Windows-StepsRecorder-Package-amd64
    cabs_Microsoft-Windows-StepsRecorder-Package-wow64
    cabs_Microsoft-Windows-TabletPCMath-Package-amd64
    cabs_Microsoft-Windows-Telnet-Client-FOD-Package-amd64
    cabs_Microsoft-Windows-TFTP-Client-FOD-Package-amd64
    cabs_Microsoft-Windows-VBSCRIPT-FoD-Package-amd64
    cabs_Microsoft-Windows-VBSCRIPT-FoD-Package-wow64
    cabs_Microsoft-Windows-Wallpaper-Content-Extended-FoD-Package-amd64
    cabs_Microsoft-Windows-Wifi-Client-Broadcom-Bcmpciedhd63-FOD-Package-amd64
    cabs_Microsoft-Windows-Wifi-Client-Broadcom-Bcmwl63a-FOD-Package-amd64
    cabs_Microsoft-Windows-Wifi-Client-Broadcom-Bcmwl63al-FOD-Package-amd64
    cabs_Microsoft-Windows-Wifi-Client-Intel-Netwbw02-FOD-Package-amd64
    cabs_Microsoft-Windows-Wifi-Client-Intel-Netwew00-FOD-Package-amd64
    cabs_Microsoft-Windows-Wifi-Client-Intel-Netwew01-FOD-Package-amd64
    cabs_Microsoft-Windows-Wifi-Client-Intel-Netwlv64-FOD-Package-amd64
    cabs_Microsoft-Windows-Wifi-Client-Intel-Netwns64-FOD-Package-amd64
    cabs_Microsoft-Windows-Wifi-Client-Intel-Netwsw00-FOD-Package-amd64
    cabs_Microsoft-Windows-Wifi-Client-Intel-Netwtw02-FOD-Package-amd64
    cabs_Microsoft-Windows-Wifi-Client-Intel-Netwtw04-FOD-Package-amd64
    cabs_Microsoft-Windows-Wifi-Client-Intel-Netwtw06-FOD-Package-amd64
    cabs_Microsoft-Windows-Wifi-Client-Intel-Netwtw08-FOD-Package-amd64
    cabs_Microsoft-Windows-Wifi-Client-Intel-Netwtw10-FOD-Package-amd64
    cabs_Microsoft-Windows-Wifi-Client-Marvel-Mrvlpcie8897-FOD-Package-amd64
    cabs_Microsoft-Windows-Wifi-Client-Qualcomm-Athw8x-FOD-Package-amd64
    cabs_Microsoft-Windows-Wifi-Client-Qualcomm-Athwnx-FOD-Package-amd64
    cabs_Microsoft-Windows-Wifi-Client-Qualcomm-Qcamain10x64-FOD-Package-amd64
    cabs_Microsoft-Windows-Wifi-Client-Ralink-Netr28x-FOD-Package-amd64
    cabs_Microsoft-Windows-Wifi-Client-Realtek-Rtl8192se-FOD-Package-amd64
    cabs_Microsoft-Windows-Wifi-Client-Realtek-Rtwlane-FOD-Package-amd64
    cabs_Microsoft-Windows-Wifi-Client-Realtek-Rtwlane01-FOD-Package-amd64
    cabs_Microsoft-Windows-Wifi-Client-Realtek-Rtwlane13-FOD-Package-amd64
    cabs_Microsoft-Windows-WinOcr-FOD-Package-amd64
    cabs_Microsoft-Windows-WinOcr-FOD-Package-wow64
    cabs_Microsoft-Windows-WMIC-FoD-Package-amd64
    cabs_Microsoft-Windows-WMIC-FoD-Package-wow64
    cabs_Microsoft-Windows-WordPad-FoD-Package-amd64
    cabs_Microsoft-Windows-WordPad-FoD-Package-wow64
    cabs_OpenSSH-Client-Package-amd64
    
    === Creating Setup Media Layout . . .
    
    === Creating install.wim . . .
    
    Using LZX compression with 8 threads
    Archiving file data: 7032 MiB of 7032 MiB (100%) done
    Using LZX compression with 8 threads
    Archiving file data: 247 MiB of 247 MiB (100%) done
    
    === Updating install.wim / 2 image{s} . . .
    
    1/1: Windows11.0-KB5031818-x64-NDP481.cab [NetFx]
    
    === Servicing Index: 1
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Mounting image
    [==========================100.0%==========================]
    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.WindowsStore_8wekyb3d8bbwe
    Microsoft.StorePurchaseApp_8wekyb3d8bbwe
    Microsoft.People_8wekyb3d8bbwe
    Microsoft.BingNews_8wekyb3d8bbwe
    Microsoft.BingSearch_8wekyb3d8bbwe
    Microsoft.BingWeather_8wekyb3d8bbwe
    Microsoft.MicrosoftSolitaireCollection_8wekyb3d8bbwe
    Microsoft.ZuneMusic_8wekyb3d8bbwe
    Microsoft.WindowsAlarms_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.XboxGameOverlay_8wekyb3d8bbwe
    Microsoft.XboxGamingOverlay_8wekyb3d8bbwe
    Microsoft.XboxIdentityProvider_8wekyb3d8bbwe
    Microsoft.Xbox.TCUI_8wekyb3d8bbwe
    Microsoft.Getstarted_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.WebpImageExtension_8wekyb3d8bbwe
    MicrosoftWindows.Client.WebExperience_cw5n1h2txyewy
    Microsoft.SecHealthUI_8wekyb3d8bbwe
    Clipchamp.Clipchamp_yxz26nhyzhsrt
    MicrosoftCorporationII.QuickAssist_8wekyb3d8bbwe
    Microsoft.OutlookForWindows_8wekyb3d8bbwe
    MicrosoftTeams_8wekyb3d8bbwe
    Microsoft.YourPhone_8wekyb3d8bbwe
    MicrosoftCorporationII.MicrosoftFamily_8wekyb3d8bbwe
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Saving image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    === Adding Updates . . .
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Image Version: 10.0.25997.1000
    
    Processing 1 of 1 - Adding package Package_for_DotNetRollup_481~31bf3856ad364e35~amd64~~10.0.9200.2
    [==========================100.0%==========================]
    The operation completed successfully.
    
    === Running DISM Cleanup . . .
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Image Version: 10.0.25997.1000
    
    Enabling feature(s)
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Image Version: 10.0.25997.1000
    
    Processing 1 of 1 - Adding package Package_for_DotNetRollup_481~31bf3856ad364e35~amd64~~10.0.9200.2
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Saving image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    === Creating Edition: Home Single Language
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Image Version: 10.0.25997.1000
    
    Pended operations ignored. When this image is next booted, these operations will be processed.
    Starting to update components...
    Starting to install product key...
    Finished installing product key.
    
    Starting to apply edition-specific settings...
    Finished applying edition-specific settings.
    
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Saving image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    === Creating Edition: Pro
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Image Version: 10.0.25997.1000
    
    Pended operations ignored. When this image is next booted, these operations will be processed.
    Starting to update components...
    Starting to install product key...
    Finished installing product key.
    
    Adding package Microsoft-Windows-ProfessionalEdition~31bf3856ad364e35~amd64~~10.0.25997.1000
    [==========================100.0%==========================]
    Finished updating components.
    
    Starting to apply edition-specific settings...
    Finished applying edition-specific settings.
    
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Saving image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    === Creating Edition: Enterprise
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Image Version: 10.0.25997.1000
    
    Pended operations ignored. When this image is next booted, these operations will be processed.
    Starting to update components...
    Starting to install product key...
    Finished installing product key.
    
    Starting to apply edition-specific settings...
    Finished applying edition-specific settings.
    
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Saving image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    === Creating Edition: IoT Enterprise
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Image Version: 10.0.25997.1000
    
    Pended operations ignored. When this image is next booted, these operations will be processed.
    Starting to update components...
    Starting to install product key...
    Finished installing product key.
    
    Starting to apply edition-specific settings...
    Finished applying edition-specific settings.
    
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Saving image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    === Creating Edition: IoT Enterprise Subscription
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Image Version: 10.0.25997.1000
    
    Pended operations ignored. When this image is next booted, these operations will be processed.
    Starting to update components...
    Starting to install product key...
    Finished installing product key.
    
    Starting to apply edition-specific settings...
    Finished applying edition-specific settings.
    
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Saving image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    === Creating Edition: Enterprise multi-session
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Image Version: 10.0.25997.1000
    
    Pended operations ignored. When this image is next booted, these operations will be processed.
    Starting to update components...
    Starting to install product key...
    Finished installing product key.
    
    Starting to apply edition-specific settings...
    Finished applying edition-specific settings.
    
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Saving image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    === Creating Edition: Education
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Image Version: 10.0.25997.1000
    
    Pended operations ignored. When this image is next booted, these operations will be processed.
    Starting to update components...
    Starting to install product key...
    Finished installing product key.
    
    Starting to apply edition-specific settings...
    Finished applying edition-specific settings.
    
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Saving image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    === Creating Edition: Pro Education
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Image Version: 10.0.25997.1000
    
    Pended operations ignored. When this image is next booted, these operations will be processed.
    Starting to update components...
    Starting to install product key...
    Finished installing product key.
    
    Starting to apply edition-specific settings...
    Finished applying edition-specific settings.
    
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Saving image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    === Creating Edition: Pro for Workstations
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Image Version: 10.0.25997.1000
    
    Pended operations ignored. When this image is next booted, these operations will be processed.
    Starting to update components...
    Starting to install product key...
    Finished installing product key.
    
    Starting to apply edition-specific settings...
    Finished applying edition-specific settings.
    
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Saving image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    === Creating Edition: SE
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Image Version: 10.0.25997.1000
    
    Pended operations ignored. When this image is next booted, these operations will be processed.
    Starting to update components...
    Starting to install product key...
    Finished installing product key.
    
    Starting to apply edition-specific settings...
    Finished applying edition-specific settings.
    
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Saving image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Image File : F:\591YZsB\ISOFOLDER\sources\install.wim
    Image Index : 1
    Unmounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    === Rebuilding install.wim . . .
    
    "ISOFOLDER\sources\install.wim" original size: 3820350 KiB
    Using LZX compression with 8 threads
    Archiving file data: 9311 MiB of 9311 MiB (100%) done
    "ISOFOLDER\sources\install.wim" optimized size: 3642365 KiB
    Space saved: 177984 KiB
    
    === Creating winre.wim . . .
    
    Using LZX compression with 8 threads
    Archiving file data: 1189 MiB of 1189 MiB (100%) done
    
    === Adding winre.wim to install.wim . . .
    
    === Creating boot.wim . . .
    
    === 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 43 directories)
    Scanning source tree complete (956 files in 85 directories)
    
    Computing directory information complete
    
    Image file is 5051154432 bytes (before optimization)
    
    Writing 956 files in 85 directories to 25997.1000.231110-1241.RS_PRERELEASE_CLIENTMULTI_X64FRE_EN-US.ISO
    
    100% complete
    
    Storage optimization saved 51 files, 19605504 bytes (1% of image)
    
    After optimization, image file is 5033754624 bytes
    Space saved because of embedding, sparseness or optimization = 19605504
    
    Done.
    
    Finished.
    Press 0 or q to exit.

    just tested Sandbox on Enterprise edition - it's not working, the same error about missing assembly
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  18. Paul Mercer

    Paul Mercer MDL Expert

    Apr 6, 2018
    1,941
    4,162
    60
    #2698 Paul Mercer, Nov 16, 2023
    Last edited: Nov 16, 2023
    please check this log

    Code:
    === Extracting ISO file . . .
    
    "F:\Windows\Base Images\Windows 10 22H2 19041.1\19041.1.191206-1406.vb_release_clientmulti_x86fre_ru-ru.iso"
    
    === Checking distribution Info . . .
    
    === Configured Virtual Options . . .
    
    UseDism
    AutoStart
    AutoEditions: ALL
    
    === Mounting Source Index: 2
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Mounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    === Creating Edition: Enterprise
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Image Version: 10.0.19041.1
    
    Starting to update components...
    Starting to install product key...
    Finished installing product key.
    
    Starting to apply edition-specific settings...
    Finished applying edition-specific settings.
    
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Saving image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Setting the FLAGS property of image 4 to "Enterprise".
    Setting the DISPLAYNAME property of image 4 to "Windows 10 Enterprise".
    Setting the DISPLAYDESCRIPTION property of image 4 to "Windows 10 Enterprise".
    Setting the NAME property of image 4 to "Windows 10 Enterprise".
    Setting the DESCRIPTION property of image 4 to "Windows 10 Enterprise".
    
    === Creating Edition: IoT Enterprise
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Image Version: 10.0.19041.1
    
    Starting to update components...
    Starting to install product key...
    Finished installing product key.
    
    Starting to apply edition-specific settings...
    Finished applying edition-specific settings.
    
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Saving image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Setting the FLAGS property of image 5 to "IoTEnterprise".
    Setting the DISPLAYNAME property of image 5 to "Windows 10 IoT Enterprise".
    Setting the DISPLAYDESCRIPTION property of image 5 to "Windows 10 IoT Enterprise".
    Setting the NAME property of image 5 to "Windows 10 IoT Enterprise".
    Setting the DESCRIPTION property of image 5 to "Windows 10 IoT Enterprise".
    
    === Creating Edition: Enterprise multi-session
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Image Version: 10.0.19041.1
    
    Starting to update components...
    Starting to install product key...
    Finished installing product key.
    
    Starting to apply edition-specific settings...
    Finished applying edition-specific settings.
    
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Saving image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Setting the FLAGS property of image 6 to "ServerRdsh".
    Setting the DISPLAYNAME property of image 6 to "Windows 10 Enterprise multi-session".
    Setting the DISPLAYDESCRIPTION property of image 6 to "Windows 10 Enterprise multi-session".
    Setting the NAME property of image 6 to "Windows 10 Enterprise multi-session".
    Setting the DESCRIPTION property of image 6 to "Windows 10 Enterprise multi-session".
    
    === Creating Edition: Education
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Image Version: 10.0.19041.1
    
    Starting to update components...
    Starting to install product key...
    Finished installing product key.
    
    Starting to apply edition-specific settings...
    Finished applying edition-specific settings.
    
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Saving image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Setting the FLAGS property of image 7 to "Education".
    Setting the DISPLAYNAME property of image 7 to "Windows 10 Education".
    Setting the DISPLAYDESCRIPTION property of image 7 to "Windows 10 Education".
    Setting the NAME property of image 7 to "Windows 10 Education".
    Setting the DESCRIPTION property of image 7 to "Windows 10 Education".
    
    === Creating Edition: Pro Education
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Image Version: 10.0.19041.1
    
    Starting to update components...
    Starting to install product key...
    Finished installing product key.
    
    Starting to apply edition-specific settings...
    Finished applying edition-specific settings.
    
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Saving image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Setting the FLAGS property of image 8 to "ProfessionalEducation".
    Setting the DISPLAYNAME property of image 8 to "Windows 10 Pro Education".
    Setting the DISPLAYDESCRIPTION property of image 8 to "Windows 10 Pro Education".
    Setting the NAME property of image 8 to "Windows 10 Pro Education".
    Setting the DESCRIPTION property of image 8 to "Windows 10 Pro Education".
    
    === Creating Edition: Pro for Workstations
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Image Version: 10.0.19041.1
    
    Starting to update components...
    Starting to install product key...
    Finished installing product key.
    
    Starting to apply edition-specific settings...
    Finished applying edition-specific settings.
    
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Saving image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Setting the FLAGS property of image 9 to "ProfessionalWorkstation".
    Setting the DISPLAYNAME property of image 9 to "Windows 10 Pro for Workstations".
    Setting the DISPLAYDESCRIPTION property of image 9 to "Windows 10 Pro for Workstations".
    Setting the NAME property of image 9 to "Windows 10 Pro for Workstations".
    Setting the DESCRIPTION property of image 9 to "Windows 10 Pro for Workstations".
    
    === Unmounting Source Index: 2
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Image File : F:\591YZsB\ISOFOLDER\sources\install.wim
    Image Index : 2
    Unmounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    === Mounting Source Index: 3
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Mounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    === Creating Edition: IoT Enterprise LTSC
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Image Version: 10.0.19044.1288
    
    Starting to update components...
    Starting to install product key...
    Finished installing product key.
    
    Starting to apply edition-specific settings...
    Finished applying edition-specific settings.
    
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Saving image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Setting the FLAGS property of image 10 to "IoTEnterpriseS".
    Setting the DISPLAYNAME property of image 10 to "Windows 10 IoT Enterprise LTSC".
    Setting the DISPLAYDESCRIPTION property of image 10 to "Windows 10 IoT Enterprise LTSC".
    Setting the NAME property of image 10 to "Windows 10 IoT Enterprise LTSC".
    Setting the DESCRIPTION property of image 10 to "Windows 10 IoT Enterprise LTSC".
    
    === Unmounting Source Index: 3
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Image File : F:\591YZsB\ISOFOLDER\sources\install.wim
    Image Index : 3
    Unmounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    === Mounting Source Index: 1
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Mounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    === Creating Edition: Home Single Language
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Image Version: 10.0.19041.1
    
    Starting to update components...
    Starting to install product key...
    Finished installing product key.
    
    Starting to apply edition-specific settings...
    Finished applying edition-specific settings.
    
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Saving image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Setting the FLAGS property of image 11 to "CoreSingleLanguage".
    Setting the DISPLAYNAME property of image 11 to "Windows 10 Home Single Language".
    Setting the DISPLAYDESCRIPTION property of image 11 to "Windows 10 Home Single Language".
    Setting the NAME property of image 11 to "Windows 10 Home Single Language".
    Setting the DESCRIPTION property of image 11 to "Windows 10 Home Single Language".
    
    === Unmounting Source Index: 1
    
    Deployment Image Servicing and Management tool
    Version: 10.0.22621.1
    
    Image File : F:\591YZsB\ISOFOLDER\sources\install.wim
    Image Index : 1
    Unmounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    === Rebuilding install.wim . . .
    
    "ISOFOLDER\sources\install.wim" original size: 3960556 KiB
    Using LZX compression with 8 threads
    Archiving file data: 8455 MiB of 8455 MiB (100%) done
    "ISOFOLDER\sources\install.wim" optimized size: 3936548 KiB
    Space saved: 24008 KiB
    
    === 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 41 directories)
    Scanning source tree complete (900 files in 86 directories)
    
    Computing directory information complete
    
    Image file would be 4583718912 bytes (before optimization)
    
    Reading 900 files in 86 directories
    
    98% complete
    GenericRead ReadFile failed
    Error 6: The handle is invalid.
    
    Errors were reported during ISO creation.
    
    Press 0 or q to exit.

    this time I was trying to create virtual editions on ISO

    there's one visual difference: this kind of blocks are not present in the uup-converter log
    Code:
    Setting the FLAGS property of image 4 to "Enterprise".
    Setting the DISPLAYNAME property of image 4 to "Windows 10 Enterprise".
    Setting the DISPLAYDESCRIPTION property of image 4 to "Windows 10 Enterprise".
    Setting the NAME property of image 4 to "Windows 10 Enterprise".
    Setting the DESCRIPTION property of image 4 to "Windows 10 Enterprise".

    p.s. no idea why it broke at 98%, I was clicking inside console window at that moment

    edit: rerun it again and got the same error
    Code:
    === 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 41 directories)
    Scanning source tree complete (900 files in 86 directories)
    
    Computing directory information complete
    
    Image file would be 4583718912 bytes (before optimization)
    
    Reading 900 files in 86 directories
    
    98% complete
    GenericRead ReadFile failed
    Error 6: The handle is invalid.
    
    Errors were reported during ISO creation.
    
    Press 0 or q to exit.
    so it's not a one time glitch

    old version is working fine with the same ISO

    Code:
    ============================================================
    Extracting ISO file . . .
    ============================================================
    
    "F:\Windows\Base Images\Windows 10 22H2 19041.1\19041.1.191206-1406.vb_release_clientmulti_x86fre_ru-ru.iso"
    
    ============================================================
    Checking Distribution Info . . .
    ============================================================
    
    ============================================================
    Configured Virtual Options . . .
    ============================================================
    
    AutoStart
    AutoEditions: Enterprise,Education,ProfessionalEducation,ProfessionalWorkstation,EnterpriseN,EducationN,ProfessionalEducationN,ProfessionalWorkstationN,CoreSingleLanguage,ServerRdsh,IoTEnterprise,IoTEnterpriseS,CloudEdition,CloudEditionN
    
    ============================================================
    Copying install.wim . . .
    ============================================================
    
    ============================================================
    Creating Edition: Enterprise
    ============================================================
    
    
    Setting the WINDOWS/EDITIONID property of image 4 to "Enterprise".
    Setting the FLAGS property of image 4 to "Enterprise".
    Setting the DISPLAYNAME property of image 4 to "Windows 10 Enterprise".
    Setting the DISPLAYDESCRIPTION property of image 4 to "Windows 10 Enterprise".
    
    ============================================================
    Creating Edition: Education
    ============================================================
    
    
    Setting the WINDOWS/EDITIONID property of image 5 to "Education".
    Setting the FLAGS property of image 5 to "Education".
    Setting the DISPLAYNAME property of image 5 to "Windows 10 Education".
    Setting the DISPLAYDESCRIPTION property of image 5 to "Windows 10 Education".
    
    ============================================================
    Creating Edition: Pro Education
    ============================================================
    
    
    Setting the WINDOWS/EDITIONID property of image 6 to "ProfessionalEducation".
    Setting the FLAGS property of image 6 to "ProfessionalEducation".
    Setting the DISPLAYNAME property of image 6 to "Windows 10 Pro Education".
    Setting the DISPLAYDESCRIPTION property of image 6 to "Windows 10 Pro Education".
    
    ============================================================
    Creating Edition: Pro for Workstations
    ============================================================
    
    
    Setting the WINDOWS/EDITIONID property of image 7 to "ProfessionalWorkstation".
    Setting the FLAGS property of image 7 to "ProfessionalWorkstation".
    Setting the DISPLAYNAME property of image 7 to "Windows 10 Pro for Workstations".
    Setting the DISPLAYDESCRIPTION property of image 7 to "Windows 10 Pro for Workstations".
    
    ============================================================
    Creating Edition: Home Single Language
    ============================================================
    
    
    Setting the WINDOWS/EDITIONID property of image 8 to "CoreSingleLanguage".
    Setting the FLAGS property of image 8 to "CoreSingleLanguage".
    Setting the DISPLAYNAME property of image 8 to "Windows 10 Home Single Language".
    Setting the DISPLAYDESCRIPTION property of image 8 to "Windows 10 Home Single Language".
    
    ============================================================
    Creating Edition: Enterprise multi-session
    ============================================================
    
    
    Setting the WINDOWS/EDITIONID property of image 9 to "ServerRdsh".
    Setting the FLAGS property of image 9 to "ServerRdsh".
    Setting the DISPLAYNAME property of image 9 to "Windows 10 Enterprise multi-session".
    Setting the DISPLAYDESCRIPTION property of image 9 to "Windows 10 Enterprise multi-session".
    
    ============================================================
    Creating Edition: IoT Enterprise
    ============================================================
    
    
    Setting the WINDOWS/EDITIONID property of image 10 to "IoTEnterprise".
    Setting the FLAGS property of image 10 to "IoTEnterprise".
    Setting the DISPLAYNAME property of image 10 to "Windows 10 IoT Enterprise".
    Setting the DISPLAYDESCRIPTION property of image 10 to "Windows 10 IoT Enterprise".
    
    ============================================================
    Creating Edition: IoT Enterprise LTSC
    ============================================================
    
    
    Setting the WINDOWS/EDITIONID property of image 11 to "IoTEnterpriseS".
    Setting the FLAGS property of image 11 to "IoTEnterpriseS".
    Setting the DISPLAYNAME property of image 11 to "Windows 10 IoT Enterprise LTSC".
    Setting the DISPLAYDESCRIPTION property of image 11 to "Windows 10 IoT Enterprise LTSC".
    
    ============================================================
    Rebuilding install.wim . . .
    ============================================================
    
    "ISOFOLDER\sources\install.wim" original size: 3963966 KiB
    Using LZX compression with 8 threads
    Archiving file data: 8245 MiB of 8245 MiB (100%) done
    "ISOFOLDER\sources\install.wim" optimized size: 3888256 KiB
    Space saved: 75710 KiB
    
    ============================================================
    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 41 directories)
    Scanning source tree complete (900 files in 86 directories)
    
    Computing directory information complete
    
    Image file is 4534272000 bytes (before optimization)
    
    Writing 900 files in 86 directories to 19041.1.191206-1406.VB_RELEASE_CLIENTMULTI_X86FRE_RU-RU.ISO
    
    100% complete
    
    Storage optimization saved 24 files, 14180352 bytes (1% of image)
    
    After optimization, image file is 4522135552 bytes
    Space saved because of embedding, sparseness or optimization = 14180352
    
    Done.
    
    Press 0 to exit.

    the same error with disabled vUseDism option

    Code:
    === Extracting ISO file . . .
    
    "F:\Windows\Base Images\Windows 10 22H2 19041.1\19041.1.191206-1406.vb_release_clientmulti_x86fre_ru-ru.iso"
    
    === Checking distribution Info . . .
    
    === Configured Virtual Options . . .
    
    AutoStart
    AutoEditions: ALL
    
    === Copying install.wim . . .
    
    === Creating Edition: Enterprise
    
    Setting the WINDOWS/EDITIONID property of image 4 to "Enterprise".
    Setting the FLAGS property of image 4 to "Enterprise".
    Setting the DISPLAYNAME property of image 4 to "Windows 10 Enterprise".
    Setting the DISPLAYDESCRIPTION property of image 4 to "Windows 10 Enterprise".
    
    === Creating Edition: IoT Enterprise
    
    Setting the WINDOWS/EDITIONID property of image 5 to "IoTEnterprise".
    Setting the FLAGS property of image 5 to "IoTEnterprise".
    Setting the DISPLAYNAME property of image 5 to "Windows 10 IoT Enterprise".
    Setting the DISPLAYDESCRIPTION property of image 5 to "Windows 10 IoT Enterprise".
    
    === Creating Edition: Enterprise multi-session
    
    Setting the WINDOWS/EDITIONID property of image 6 to "ServerRdsh".
    Setting the FLAGS property of image 6 to "ServerRdsh".
    Setting the DISPLAYNAME property of image 6 to "Windows 10 Enterprise multi-session".
    Setting the DISPLAYDESCRIPTION property of image 6 to "Windows 10 Enterprise multi-session".
    
    === Creating Edition: Education
    
    Setting the WINDOWS/EDITIONID property of image 7 to "Education".
    Setting the FLAGS property of image 7 to "Education".
    Setting the DISPLAYNAME property of image 7 to "Windows 10 Education".
    Setting the DISPLAYDESCRIPTION property of image 7 to "Windows 10 Education".
    
    === Creating Edition: Pro Education
    
    Setting the WINDOWS/EDITIONID property of image 8 to "ProfessionalEducation".
    Setting the FLAGS property of image 8 to "ProfessionalEducation".
    Setting the DISPLAYNAME property of image 8 to "Windows 10 Pro Education".
    Setting the DISPLAYDESCRIPTION property of image 8 to "Windows 10 Pro Education".
    
    === Creating Edition: Pro for Workstations
    
    Setting the WINDOWS/EDITIONID property of image 9 to "ProfessionalWorkstation".
    Setting the FLAGS property of image 9 to "ProfessionalWorkstation".
    Setting the DISPLAYNAME property of image 9 to "Windows 10 Pro for Workstations".
    Setting the DISPLAYDESCRIPTION property of image 9 to "Windows 10 Pro for Workstations".
    
    === Creating Edition: IoT Enterprise LTSC
    
    Setting the WINDOWS/EDITIONID property of image 10 to "IoTEnterpriseS".
    Setting the FLAGS property of image 10 to "IoTEnterpriseS".
    Setting the DISPLAYNAME property of image 10 to "Windows 10 IoT Enterprise LTSC".
    Setting the DISPLAYDESCRIPTION property of image 10 to "Windows 10 IoT Enterprise LTSC".
    
    === Creating Edition: Home Single Language
    
    Setting the WINDOWS/EDITIONID property of image 11 to "CoreSingleLanguage".
    Setting the FLAGS property of image 11 to "CoreSingleLanguage".
    Setting the DISPLAYNAME property of image 11 to "Windows 10 Home Single Language".
    Setting the DISPLAYDESCRIPTION property of image 11 to "Windows 10 Home Single Language".
    
    === Rebuilding install.wim . . .
    
    "ISOFOLDER\sources\install.wim" original size: 3963966 KiB
    Using LZX compression with 8 threads
    Archiving file data: 8245 MiB of 8245 MiB (100%) done
    "ISOFOLDER\sources\install.wim" optimized size: 3888256 KiB
    Space saved: 75709 KiB
    
    === 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 41 directories)
    Scanning source tree complete (900 files in 86 directories)
    
    Computing directory information complete
    
    Image file would be 4534272000 bytes (before optimization)
    
    Reading 900 files in 86 directories
    
    98% complete
    GenericRead ReadFile failed
    Error 6: The handle is invalid.
    
    Errors were reported during ISO creation.
    
    Press 0 or q to exit.


    this time it's different again, I checked editions names with wimlib and everything is fine
    Code:
    Setting the WINDOWS/EDITIONID property of image 4 to "Enterprise".
    Setting the FLAGS property of image 4 to "Enterprise".
    Setting the DISPLAYNAME property of image 4 to "Windows 10 Enterprise".
    Setting the DISPLAYDESCRIPTION property of image 4 to "Windows 10 Enterprise".
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...
  19. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    17,201
    90,743
    340
    Yes, setting image properties output is supressed if the virtual editions are created during "Updating install.wim" session, to reduce unnecessary noise
    but the command is still executed

    i don't know why creating ISO failed, nothing was changed in that routine
     
  20. Paul Mercer

    Paul Mercer MDL Expert

    Apr 6, 2018
    1,941
    4,162
    60
    I noticed some difference:
    old version: at 1+% ISO is already in the converters folder, when it's done ISO folder is getting deleted
    in the Beta version I don't see any ISO in that folder at 1-98%, and after 98% it throws an error

    maybe ISO name is incorrect and it can't finish it
     
    Stop hovering to collapse... Click to collapse... Hover to expand... Click to expand...