abbodi1406's Batch Scripts Repo

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

  1. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,188
    84,679
    340
    uup-converter v65
     
  2. I don't understand why people are so fussed about having the correct order in create virtual editions.
    Seriously just rearrange the editions afterward with wimlib, it barely takes 2 minutes :D
     
  3. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,639
    3,382
    60
    I like this aesthetic. Could you send an example of the command?

    Grateful for the attention!
     
  4. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,213
    94,561
    450
    #1484 Enthousiast, Jul 1, 2021
    Last edited: Jul 1, 2021
    Best to simply use DISM:
    Code:
    dism /Export-Image /SourceImageFile:"Source_Install.wim" /SourceIndex:X /DestinationImageFile:"Target_Install.wim" /Compress:max
    Copy the commandline into a txt file, adjust the "/SourceIndex:X" to the index you want to export.
    When you have all lines ordered to your desire, copy past it in an elevated cmd prompt and run them.

    Example:
    Code:
    dism /Export-Image /SourceImageFile:"AiO\x64\Sources\install.wim" /SourceIndex:3 /DestinationImageFile:"AiO\x64\Sources\SLiM_AiO.wim" /Compress:max
    dism /Export-Image /SourceImageFile:"AiO\x64\Sources\install.wim" /SourceIndex:6 /DestinationImageFile:"AiO\x64\Sources\SLiM_AiO.wim" /Compress:max
    dism /Export-Image /SourceImageFile:"AiO\x64\Sources\install.wim" /SourceIndex:9 /DestinationImageFile:"AiO\x64\Sources\SLiM_AiO.wim" /Compress:max
    dism /Export-Image /SourceImageFile:"AiO\x64\Sources\install.wim" /SourceIndex:12 /DestinationImageFile:"AiO\x64\Sources\SLiM_AiO.wim" /Compress:max
    dism /Export-Image /SourceImageFile:"AiO\x64\Sources\install.wim" /SourceIndex:21 /DestinationImageFile:"AiO\x64\Sources\SLiM_AiO.wim" /Compress:max
    
    For directly exporting to install.esd change "/Target_Install.esd" and "/Compress:Recovery".

    Wimlib-imagex:
    wim > wim
    Code:
    wimlib-imagex export Source_Install.wim X Target_Install.wim --compress=LZX
    wim > esd
    Code:
    wimlib-imagex export Source_Install.wim X Target_Install.esd --compress=LZMS --solid
    https://www.systutorials.com/docs/linux/man/1-wimlib-imagex-export/

    But i don't know who is fussing about this, the tools have the option included.
     
  5. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,639
    3,382
    60
    Nobody is fussed, just the story of reordering came up again. It must have been, because of my talk about customizing create_virtual_editions.cmd, in which I said that part of the customization was sending the Home Single Language to the last position.

    Yes, I use dism.

    Remember that time I commented on deleting indexes instead of exporting versions.

    I managed to make the algorithm to correctly delete the unwanted indexes.

    Also, the reordering of indexes was implemented in the Custom Toolkit. In the beginning you just select the indexes in the order you want and when saving the export will occur in that order.

    But right now I'm learning how to use wimlib.

    So I asked for the command that @Exe Csrss suggested. This specific command interests me.
     
  6. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,188
    84,679
    340
  7. Here is what I use: (if I have all 15 indices)
    Code:
    @echo off
    call addinfos.bat
    .\wimlib-imagex.exe export "D:\install.wim" 1 "D:\install1.wim" --compress=lzx:100 --recompress
    .\wimlib-imagex.exe export "D:\install.wim" 2 "D:\install1.wim" --compress=lzx:100 --recompress
    .\wimlib-imagex.exe export "D:\install.wim" 13 "D:\install1.wim" --compress=lzx:100 --recompress
    .\wimlib-imagex.exe export "D:\install.wim" 3 "D:\install1.wim" --compress=lzx:100 --recompress
    .\wimlib-imagex.exe export "D:\install.wim" 4 "D:\install1.wim" --compress=lzx:100 --recompress
    .\wimlib-imagex.exe export "D:\install.wim" 8 "D:\install1.wim" --compress=lzx:100 --recompress
    .\wimlib-imagex.exe export "D:\install.wim" 12 "D:\install1.wim" --compress=lzx:100 --recompress
    .\wimlib-imagex.exe export "D:\install.wim" 7 "D:\install1.wim" --compress=lzx:100 --recompress
    .\wimlib-imagex.exe export "D:\install.wim" 11 "D:\install1.wim" --compress=lzx:100 --recompress
    .\wimlib-imagex.exe export "D:\install.wim" 6 "D:\install1.wim" --compress=lzx:100 --recompress
    .\wimlib-imagex.exe export "D:\install.wim" 10 "D:\install1.wim" --compress=lzx:100 --recompress
    .\wimlib-imagex.exe export "D:\install.wim" 5 "D:\install1.wim" --compress=lzx:100 --recompress
    .\wimlib-imagex.exe export "D:\install.wim" 9 "D:\install1.wim" --compress=lzx:100 --recompress
    .\wimlib-imagex.exe export "D:\install.wim" 14 "D:\install1.wim" --compress=lzx:100 --recompress
    .\wimlib-imagex.exe export "D:\install.wim" 15 "D:\install1.wim" --compress=lzx:100 --recompress
    del D:\install.wim /f /q
    ren D:\install1.wim install.wim
    
     
  8. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,639
    3,382
    60
    Nice!

    The way you mentioned it I thought it was just a line of code, like:

    A little optimized there.
    Code:
    @echo off
    call addinfos.bat
    set "ChosenIndexes=1 2 13 3 4 8 12 7 11 6 10 5 9 14 15" && for %%# in (%ChosenIndexes%) do (.\wimlib-imagex.exe export "D:\install.wim" %%# "D:\install1.wim" --compress=lzx:100 --recompress)
    del D:\install.wim /f /q
    ren D:\install1.wim install.wim
    
    Check if it's working properly.

    Thank you so much for showing the command this way. It became more readable for me to understand.
     
  9. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,188
    84,679
    340
    #1489 abbodi1406, Jul 3, 2021
    Last edited: Jul 3, 2021
    (OP)
  10. MUKESH

    MUKESH MDL Junior Member

    Sep 1, 2011
    61
    31
    0
    "Error: failed to extract PSF update"

    Firstly, while downloading the windows 11 uup set from uupdump i unchecked/excluded the windows 11 teams edition. Then using the "uup-converter-wimlib-65f.7z" i created the required windows 11 operating systems ( everyone of them excluding the windows 11 teams edition ) with the convertconfig.ini settings and the conversion process as follows:
    [​IMG]
    Code:
    ============================================================
    Running UUP -> ISO v65
    ============================================================
    
    ============================================================
    Checking UUP Info . . .
    ============================================================
    
    ============================================================
    Configured Options . . .
    ============================================================
    
    AutoStart 1
    StartVirtual
    
    ============================================================
    Preparing Reference ESDs . . .
    ============================================================
    
    CAB->ESD: microsoft-onecore-applicationmodel-sync-desktop-fod-package-amd64
    CAB->ESD: microsoft-onecore-directx-database-fod-package-amd64
    CAB->ESD: microsoft-windows-ethernet-client-intel-e1i68x64-fod-package-amd64
    CAB->ESD: microsoft-windows-ethernet-client-intel-e2f68-fod-package-amd64
    CAB->ESD: microsoft-windows-ethernet-client-realtek-rtcx21x64-fod-package-amd64
    CAB->ESD: microsoft-windows-hello-face-package-amd64
    CAB->ESD: microsoft-windows-internetexplorer-optional-package-amd64
    CAB->ESD: microsoft-windows-kernel-la57-fod-package-amd64
    CAB->ESD: microsoft-windows-languagefeatures-basic-en-us-package-amd64
    CAB->ESD: microsoft-windows-languagefeatures-handwriting-en-us-package-amd64
    CAB->ESD: microsoft-windows-languagefeatures-ocr-en-us-package-amd64
    CAB->ESD: microsoft-windows-languagefeatures-speech-en-us-package-amd64
    CAB->ESD: microsoft-windows-languagefeatures-texttospeech-en-us-package-amd64
    CAB->ESD: microsoft-windows-mediaplayer-package-amd64
    CAB->ESD: microsoft-windows-notepad-system-fod-package-amd64
    CAB->ESD: microsoft-windows-powershell-ise-fod-package-amd64
    CAB->ESD: microsoft-windows-printing-pmcppc-fod-package-amd64
    CAB->ESD: microsoft-windows-printing-wfs-fod-package-amd64
    CAB->ESD: microsoft-windows-quickassist-package-amd64
    CAB->ESD: microsoft-windows-stepsrecorder-package-amd64
    CAB->ESD: microsoft-windows-tabletpcmath-package-amd64
    CAB->ESD: microsoft-windows-userexperience-desktop-package-amd64
    CAB->ESD: microsoft-windows-wifi-client-broadcom-bcmpciedhd63-fod-package-amd64
    CAB->ESD: microsoft-windows-wifi-client-broadcom-bcmwl63a-fod-package-amd64
    CAB->ESD: microsoft-windows-wifi-client-broadcom-bcmwl63al-fod-package-amd64
    CAB->ESD: microsoft-windows-wifi-client-intel-netwbw02-fod-package-amd64
    CAB->ESD: microsoft-windows-wifi-client-intel-netwew00-fod-package-amd64
    CAB->ESD: microsoft-windows-wifi-client-intel-netwew01-fod-package-amd64
    CAB->ESD: microsoft-windows-wifi-client-intel-netwlv64-fod-package-amd64
    CAB->ESD: microsoft-windows-wifi-client-intel-netwns64-fod-package-amd64
    CAB->ESD: microsoft-windows-wifi-client-intel-netwsw00-fod-package-amd64
    CAB->ESD: microsoft-windows-wifi-client-intel-netwtw02-fod-package-amd64
    CAB->ESD: microsoft-windows-wifi-client-intel-netwtw04-fod-package-amd64
    CAB->ESD: microsoft-windows-wifi-client-intel-netwtw06-fod-package-amd64
    CAB->ESD: microsoft-windows-wifi-client-intel-netwtw08-fod-package-amd64
    CAB->ESD: microsoft-windows-wifi-client-marvel-mrvlpcie8897-fod-package-amd64
    CAB->ESD: microsoft-windows-wifi-client-qualcomm-athw8x-fod-package-amd64
    CAB->ESD: microsoft-windows-wifi-client-qualcomm-athwnx-fod-package-amd64
    CAB->ESD: microsoft-windows-wifi-client-qualcomm-qcamain10x64-fod-package-amd64
    CAB->ESD: microsoft-windows-wifi-client-ralink-netr28x-fod-package-amd64
    CAB->ESD: microsoft-windows-wifi-client-realtek-rtl8187se-fod-package-amd64
    CAB->ESD: microsoft-windows-wifi-client-realtek-rtl8192se-fod-package-amd64
    CAB->ESD: microsoft-windows-wifi-client-realtek-rtl819xp-fod-package-amd64
    CAB->ESD: microsoft-windows-wifi-client-realtek-rtl85n64-fod-package-amd64
    CAB->ESD: microsoft-windows-wifi-client-realtek-rtwlane-fod-package-amd64
    CAB->ESD: microsoft-windows-wifi-client-realtek-rtwlane01-fod-package-amd64
    CAB->ESD: microsoft-windows-wifi-client-realtek-rtwlane13-fod-package-amd64
    CAB->ESD: microsoft-windows-wordpad-fod-package-amd64
    CAB->ESD: openssh-client-package-amd64
    
    ============================================================
    Creating Setup Media Layout . . .
    ============================================================
    
    
    ============================================================
    Creating install.wim . . .
    ============================================================
    
    Using LZX compression with 4 threads
    Archiving file data: 7339 MiB of 7339 MiB (100%) done
    Using LZX compression with 4 threads
    Archiving file data: 202 MiB of 202 MiB (100%) done
    Using LZX compression with 4 threads
    Archiving file data: 242 MiB of 242 MiB (100%) done
    Using LZX compression with 4 threads
    Archiving file data: 192 MiB of 192 MiB (100%) done
    
    ============================================================
    Creating winre.wim . . .
    ============================================================
    
    Using LZX compression with 4 threads
    Archiving file data: 1056 MiB of 1056 MiB (100%) done
    
    ============================================================
    Adding winre.wim to install.wim . . .
    ============================================================
    
    
    ============================================================
    Creating boot.wim . . .
    ============================================================
    
    
    ============================================================
    Checking Distribution Info . . .
    ============================================================
    
    ============================================================
    Configured Virtual Options . . .
    ============================================================
    
    AutoStart
    SkipISO
    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 5 to "Enterprise".
    Setting the FLAGS property of image 5 to "Enterprise".
    Setting the DISPLAYNAME property of image 5 to "Windows 11 Enterprise".
    Setting the DISPLAYDESCRIPTION property of image 5 to "Windows 11 Enterprise".
    
    ============================================================
    Creating Edition: Education
    ============================================================
    
    
    Setting the WINDOWS/EDITIONID property of image 6 to "Education".
    Setting the FLAGS property of image 6 to "Education".
    Setting the DISPLAYNAME property of image 6 to "Windows 11 Education".
    Setting the DISPLAYDESCRIPTION property of image 6 to "Windows 11 Education".
    
    ============================================================
    Creating Edition: Pro Education
    ============================================================
    
    
    Setting the WINDOWS/EDITIONID property of image 7 to "ProfessionalEducation".
    Setting the FLAGS property of image 7 to "ProfessionalEducation".
    Setting the DISPLAYNAME property of image 7 to "Windows 11 Pro Education".
    Setting the DISPLAYDESCRIPTION property of image 7 to "Windows 11 Pro Education".
    
    ============================================================
    Creating Edition: Pro for Workstations
    ============================================================
    
    
    Setting the WINDOWS/EDITIONID property of image 8 to "ProfessionalWorkstation".
    Setting the FLAGS property of image 8 to "ProfessionalWorkstation".
    Setting the DISPLAYNAME property of image 8 to "Windows 11 Pro for Workstations".
    Setting the DISPLAYDESCRIPTION property of image 8 to "Windows 11 Pro for Workstations".
    
    ============================================================
    Creating Edition: Enterprise N
    ============================================================
    
    
    Setting the WINDOWS/EDITIONID property of image 9 to "EnterpriseN".
    Setting the FLAGS property of image 9 to "EnterpriseN".
    Setting the DISPLAYNAME property of image 9 to "Windows 11 Enterprise N".
    Setting the DISPLAYDESCRIPTION property of image 9 to "Windows 11 Enterprise N".
    
    ============================================================
    Creating Edition: Education N
    ============================================================
    
    
    Setting the WINDOWS/EDITIONID property of image 10 to "EducationN".
    Setting the FLAGS property of image 10 to "EducationN".
    Setting the DISPLAYNAME property of image 10 to "Windows 11 Education N".
    Setting the DISPLAYDESCRIPTION property of image 10 to "Windows 11 Education N".
    
    ============================================================
    Creating Edition: Pro Education N
    ============================================================
    
    
    Setting the WINDOWS/EDITIONID property of image 11 to "ProfessionalEducationN".
    Setting the FLAGS property of image 11 to "ProfessionalEducationN".
    Setting the DISPLAYNAME property of image 11 to "Windows 11 Pro Education N".
    Setting the DISPLAYDESCRIPTION property of image 11 to "Windows 11 Pro Education N".
    
    ============================================================
    Creating Edition: Pro N for Workstations
    ============================================================
    
    
    Setting the WINDOWS/EDITIONID property of image 12 to "ProfessionalWorkstationN".
    Setting the FLAGS property of image 12 to "ProfessionalWorkstationN".
    Setting the DISPLAYNAME property of image 12 to "Windows 11 Pro N for Workstations".
    Setting the DISPLAYDESCRIPTION property of image 12 to "Windows 11 Pro N for Workstations".
    
    ============================================================
    Creating Edition: Home Single Language
    ============================================================
    
    
    Setting the WINDOWS/EDITIONID property of image 13 to "CoreSingleLanguage".
    Setting the FLAGS property of image 13 to "CoreSingleLanguage".
    Setting the DISPLAYNAME property of image 13 to "Windows 11 Home Single Language".
    Setting the DISPLAYDESCRIPTION property of image 13 to "Windows 11 Home Single Language".
    
    ============================================================
    Creating Edition: Enterprise multi-session
    ============================================================
    
    
    Setting the WINDOWS/EDITIONID property of image 14 to "ServerRdsh".
    Setting the FLAGS property of image 14 to "ServerRdsh".
    Setting the DISPLAYNAME property of image 14 to "Windows 11 Enterprise multi-session".
    Setting the DISPLAYDESCRIPTION property of image 14 to "Windows 11 Enterprise multi-session".
    
    ============================================================
    Creating Edition: IoT Enterprise
    ============================================================
    
    
    Setting the WINDOWS/EDITIONID property of image 15 to "IoTEnterprise".
    Setting the FLAGS property of image 15 to "IoTEnterprise".
    Setting the DISPLAYNAME property of image 15 to "Windows 11 IoT Enterprise".
    Setting the DISPLAYDESCRIPTION property of image 15 to "Windows 11 IoT Enterprise".
    
    ============================================================
    Creating Edition: SE
    ============================================================
    
    
    Setting the WINDOWS/EDITIONID property of image 16 to "CloudEdition".
    Setting the FLAGS property of image 16 to "CloudEdition".
    Setting the DISPLAYNAME property of image 16 to "Windows 11 SE".
    Setting the DISPLAYDESCRIPTION property of image 16 to "Windows 11 SE".
    
    ============================================================
    Creating Edition: SE N
    ============================================================
    
    
    Setting the WINDOWS/EDITIONID property of image 17 to "CloudEditionN".
    Setting the FLAGS property of image 17 to "CloudEditionN".
    Setting the DISPLAYNAME property of image 17 to "Windows 11 SE N".
    Setting the DISPLAYDESCRIPTION property of image 17 to "Windows 11 SE N".
    
    ============================================================
    Rebuilding install.wim . . .
    ============================================================
    
    "ISOFOLDER\sources\install.wim" original size: 4027858 KiB
    Using LZX compression with 4 threads
    Archiving file data: 9325 MiB of 9325 MiB (100%) done
    "ISOFOLDER\sources\install.wim" optimized size: 3850107 KiB
    Space saved: 177751 KiB
    
    ============================================================
    Done. You chose not to create iso file.
    ============================================================
    
    
    Press 0 to exit.
    

    Now, i used "W10UI_10.2_PSF.zip" for updating ( index 5 only ) and i am getting the psf update failed to extract error. The W10UI settings and update process are as follows:
    [​IMG]
    [​IMG]
    Code:
    ============================================================
    Running W10UI v10.2
    ============================================================
    
    ============================================================
    Removing temporary extracted files...
    ============================================================
    
    
    ============================================================
    Extracting files from update cabinets (.cab)
    *** This will require some disk space, please be patient ***
    ============================================================
    
    1/5: windows10.0-kb5004564-x64.cab [LCU]
    Error: failed to extract PSF update
    2/5: windows10.0-kb5004567-x64.cab
    3/5: windows10.0-kb5004568-x64.cab [WinPE]
    4/5: windows10.0-kb5004569-x64.cab [Setup DU]
    5/5: Windows10.0-KB5004570-x64.cab [SSU]
    
    ============================================================
    Mounting sources\install.wim - index 5/17
    ============================================================
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Mounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    ============================================================
    Checking Updates...
    ============================================================
    
    ============================================================
    Installing servicing stack update...
    ============================================================
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Image Version: 10.0.22000.1
    
    Processing 1 of 1 - Adding package Package_for_ServicingStack~31bf3856ad364e35~amd64~~22000.51.1.0
    [==========================100.0%==========================]
    The operation completed successfully.
    
    ============================================================
    Installing updates...
    ============================================================
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Image Version: 10.0.22000.1
    
    Processing 1 of 1 - Adding package Package_for_KB5004567~31bf3856ad364e35~amd64~~10.0.1.0
    [==========================100.0%==========================]
    The operation completed successfully.
    
    ============================================================
    Adding .NET Framework 3.5 feature
    ============================================================
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Image Version: 10.0.22000.1
    
    Enabling feature(s)
    [==========================100.0%==========================]
    The operation completed successfully.
    
    ============================================================
    Updating winre.wim
    ============================================================
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Mounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Image Version: 10.0.22000.1
    
    Processing 1 of 1 - Adding package Package_for_ServicingStack~31bf3856ad364e35~amd64~~22000.51.1.0
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Image Version: 10.0.22000.1
    
    Processing 1 of 1 - Adding package Package_for_KB5004568~31bf3856ad364e35~amd64~~10.0.1.0
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Image Version: 10.0.22000.1
    
    Processing 1 of 1 - Adding package Package_for_KB5004567~31bf3856ad364e35~amd64~~10.0.1.0
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Image Version: 10.0.22000.1
    
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Image Version: 10.0.22000.1
    
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Image File : D:\Win11_2\winre.wim
    Image Index : 1
    Saving image
    [==========================100.0%==========================]
    Unmounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Exporting image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    ============================================================
    Adding updated winre.wim
    ============================================================
    
            1 file(s) copied.
    
    ============================================================
    Unmounting sources\install.wim - index 5/17
    ============================================================
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Image File : D:\Win11_2\22000.1.210604-1628.CO_RELEASE_CLIENTMULTI_X64FRE_EN-US\sources\install.wim
    Image Index : 5
    Saving image
    [==========================100.0%==========================]
    Unmounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    ============================================================
    Rebuilding sources\install.wim
    ============================================================
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Exporting image
    [==========================100.0%==========================]
    Exporting image
    [==========================100.0%==========================]
    Exporting image
    [==========================100.0%==========================]
    Exporting image
    [==========================100.0%==========================]
    Exporting image
    [==========================100.0%==========================]
    Exporting image
    [==========================100.0%==========================]
    Exporting image
    [==========================100.0%==========================]
    Exporting image
    [==========================100.0%==========================]
    Exporting image
    [==========================100.0%==========================]
    Exporting image
    [==========================100.0%==========================]
    Exporting image
    [==========================100.0%==========================]
    Exporting image
    [==========================100.0%==========================]
    Exporting image
    [==========================100.0%==========================]
    Exporting image
    [==========================100.0%==========================]
    Exporting image
    [==========================100.0%==========================]
    Exporting image
    [==========================100.0%==========================]
    Exporting image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    ============================================================
    Mounting sources\boot.wim - index 1/2
    ============================================================
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Mounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    ============================================================
    Checking Updates...
    ============================================================
    
    ============================================================
    Installing servicing stack update...
    ============================================================
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Image Version: 10.0.22000.1
    
    Processing 1 of 1 - Adding package Package_for_ServicingStack~31bf3856ad364e35~amd64~~22000.51.1.0
    [==========================100.0%==========================]
    The operation completed successfully.
    
    ============================================================
    Installing updates...
    ============================================================
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Image Version: 10.0.22000.1
    
    Processing 1 of 1 - Adding package Package_for_KB5004568~31bf3856ad364e35~amd64~~10.0.1.0
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Image Version: 10.0.22000.1
    
    Processing 1 of 1 - Adding package Package_for_KB5004567~31bf3856ad364e35~amd64~~10.0.1.0
    [==========================100.0%==========================]
    The operation completed successfully.
    
    ============================================================
    Resetting WinPE image base
    ============================================================
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Image Version: 10.0.22000.1
    
    [==================         32.6%                          ]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Image Version: 10.0.22000.1
    
    [==========================100.0%==========================]
    The operation completed successfully.
    
    ============================================================
    Unmounting sources\boot.wim - index 1/2
    ============================================================
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Image File : D:\Win11_2\22000.1.210604-1628.CO_RELEASE_CLIENTMULTI_X64FRE_EN-US\sources\boot.wim
    Image Index : 1
    Saving image
    [==========================100.0%==========================]
    Unmounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    ============================================================
    Mounting sources\boot.wim - index 2/2
    ============================================================
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Mounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    ============================================================
    Checking Updates...
    ============================================================
    
    ============================================================
    Installing servicing stack update...
    ============================================================
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Image Version: 10.0.22000.1
    
    Processing 1 of 1 - Adding package Package_for_ServicingStack~31bf3856ad364e35~amd64~~22000.51.1.0
    [==========================100.0%==========================]
    The operation completed successfully.
    
    ============================================================
    Installing updates...
    ============================================================
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Image Version: 10.0.22000.1
    
    Processing 1 of 1 - Adding package Package_for_KB5004568~31bf3856ad364e35~amd64~~10.0.1.0
    [==========================100.0%==========================]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Image Version: 10.0.22000.1
    
    Processing 1 of 1 - Adding package Package_for_KB5004567~31bf3856ad364e35~amd64~~10.0.1.0
    [==========================100.0%==========================]
    The operation completed successfully.
    
    ============================================================
    Resetting WinPE image base
    ============================================================
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Image Version: 10.0.22000.1
    
    [==================         32.6%                          ]
    The operation completed successfully.
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Image Version: 10.0.22000.1
    
    [==========================100.0%==========================]
    The operation completed successfully.
    
    ============================================================
    Unmounting sources\boot.wim - index 2/2
    ============================================================
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Image File : D:\Win11_2\22000.1.210604-1628.CO_RELEASE_CLIENTMULTI_X64FRE_EN-US\sources\boot.wim
    Image Index : 2
    Saving image
    [==========================100.0%==========================]
    Unmounting image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    ============================================================
    Rebuilding sources\boot.wim
    ============================================================
    
    Deployment Image Servicing and Management tool
    Version: 10.0.19041.844
    
    Exporting image
    [==========================100.0%==========================]
    Exporting image
    [==========================100.0%==========================]
    The operation completed successfully.
    
    ============================================================
    Adding setup dynamic update(s)...
    ============================================================
    
    windows10.0-kb5004569-x64.cab
    
    ============================================================
    Removing temporary extracted files...
    ============================================================
    
    
    ============================================================
    Creating updated ISO file...
    ============================================================
    
    ISO Location:
    "D:\Win11_2"
    
    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 42 directories)
    Scanning source tree complete (930 files in 85 directories)
    
    Computing directory information complete
    
    Image file is 5151784960 bytes (before optimization)
    
    Writing 930 files in 85 directories to Win10_22000.1_x64_2021-07-03.iso
    
    100% complete
    
    Storage optimization saved 24 files, 14217216 bytes (1% of image)
    
    After optimization, image file is 5139675136 bytes
    Space saved because of embedding, sparseness or optimization = 14217216
    
    Done.
    
    ============================================================
       Finished
    ============================================================
    
    
    Press 9 to exit.
    
     
  11. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,188
    84,679
    340
    @MUKESH

     
  12. KleineZiege

    KleineZiege MDL Expert

    Dec 11, 2018
    1,681
    1,929
    60
    can you reap de beauty bug fix in the next issue

    boot.wim mount

    Look at the picture think better than to explain
     

    Attached Files:

  13. crypticus

    crypticus MDL Senior Member

    Jun 29, 2015
    317
    142
    10

    * Latest offline installer for Microsoft Edge:
    https://32767.ga/edge/

    is dead
     
  14. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,188
    84,679
    340
  15. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,639
    3,382
    60
    Good morning @abbodi1406!

    When I create a "Windows 11 pt-BR" UUP ISO with the 3 Basic Editions the sequence is Home, Team and Pro.

    Home is correctly named "Windows 11 Home" and Team is correctly named "Windows 10 Team".

    But the Pro is erroneously named Windows 10 Pro.

    22000.51.210619-2323.CO_RELEASE_SVC_PROD2_CLIENTMULTI_X64FRE_PT-BR.ISO

    This checked in the Toolkit. I didn't check otherwise.

    Code:
    ===============================================================================
                   MSMG ToolKit - Select Source from <DVD> folder
    ===============================================================================
    
    -------------------------------------------------------------------------------
    ####Selecting Source Images####################################################
    -------------------------------------------------------------------------------
    
    Reading Image Information...
    
    ===============================================================================
    | Index | Arch | Name
    ===============================================================================
    |   1   | x64  | Windows 11 Home
    |   2   | x64  | Windows 10 Team
    |   3   | x64  | Windows 10 Pro
    ===============================================================================
    
    Enter the Image Index # [Range : 1,...3 or 'A'll 'Q'uit] :
    
    When I build only with Home and Pro everything is fine, named Windows 11.

    Code:
    ===============================================================================
                   MSMG ToolKit - Select Source from <DVD> folder
    ===============================================================================
    
    -------------------------------------------------------------------------------
    ####Selecting Source Images####################################################
    -------------------------------------------------------------------------------
    
    Reading Image Information...
    
    ===============================================================================
    | Index | Arch | Name
    ===============================================================================
    |   1   | x64  | Windows 11 Home
    |   2   | x64  | Windows 11 Pro
    ===============================================================================
    
    Enter the Image Index # [Range : 1,...2 or 'A'll 'Q'uit] :
    
     
  16. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,188
    84,679
    340
    @RaiyvaN

    it's just a name, and you should should not use Team edition anyway
    i will look into it
     
  17. inTerActionVRI

    inTerActionVRI MDL Expert

    Sep 23, 2009
    1,639
    3,382
    60
    Yes, just the name. But reporting the test and the detail. So you can fix it when possible.

    Thnks!
     
  18. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,188
    84,679
    340
    WUI10 v10.3

    - Added workaround for long path issue when extracting PSF updates
     
  19. abbodi1406

    abbodi1406 MDL KB0000001

    Feb 19, 2011
    16,188
    84,679
    340
    ------