Windows DVD with multiple languages and both x86 and x64 version

Discussion in 'Windows 10' started by Hacker?pcs, May 8, 2020.

  1. Hacker?pcs

    Hacker?pcs MDL Junior Member

    Joined:
    May 28, 2009
    Messages:
    51
    Likes Received:
    19
    Trophy Points:
    0
    Is there a guide on how to create a Windows 10 DVD containing both 32 and 64 bit versions and also containing multiple (in my case Greek and English) for both of them? I got the latest April 2020 ISOs and also the Multilanguage DVD for 1903/1909 if it's needed in the process.

    I prefer to create the DVD on my own from the MSDN sources to avoid having malware or something else in it.
     
  2. WindowsGeek

    WindowsGeek MDL Expert

    Joined:
    Jun 30, 2015
    Messages:
    1,082
    Likes Received:
    239
    Trophy Points:
    60
    U will need a dual layer DVD.
     
  3. Hacker?pcs

    Hacker?pcs MDL Junior Member

    Joined:
    May 28, 2009
    Messages:
    51
    Likes Received:
    19
    Trophy Points:
    0
    It's not going on an actual DVD but on a bootable USB stick so even if it goes to 10-15 GB I don't mind.
     
  4. Enthousiast

    Enthousiast MDL Tester

    Joined:
    Oct 30, 2009
    Messages:
    35,566
    Likes Received:
    59,630
    Trophy Points:
    450
    Create an x86 and an x64 ISO with the desired languages by using W10MUI
    Optionally, you can create ISOs with install.esd, using https://forums.mydigitallife.net/th...-install-esd-install-swm-creation-tool.78925/
    And next put both ISOs inside the ESD > ISO project folder and run "multi_arch_iso.cmd", it will offer to create a MCT like ISO, with 2 separate wim or esd files. or an ISO with combined x86/x64 install.wim or esd (depends if you feed it ISOs with wim or esd).
     
  5. Hacker?pcs

    Hacker?pcs MDL Junior Member

    Joined:
    May 28, 2009
    Messages:
    51
    Likes Received:
    19
    Trophy Points:
    0
    Thanks for the info, a question: should I use your project for 3.5GB split files (good thought, FAT32 sticks will be probably used too) on the different x86 and x64 ISOs before using the multiarch batch or on the final multiarch ISO to split that instead?

    Also, W10MUI integrates the language an all SKUs (11) on the ISO, is there a way to remove the N versions to shorten the time W10MUI takes, I don't need and also clutter the install selection?
     
  6. Enthousiast

    Enthousiast MDL Tester

    Joined:
    Oct 30, 2009
    Messages:
    35,566
    Likes Received:
    59,630
    Trophy Points:
    450
    I only use swm files when the esd won't be under 4GB, i can fit 39 en-US only indexes easily in one install.esd <4GB. Multi language will take more space, but it could fit too.

    You can delete the N editions manually before running all the scripts.
     
  7. Hacker?pcs

    Hacker?pcs MDL Junior Member

    Joined:
    May 28, 2009
    Messages:
    51
    Likes Received:
    19
    Trophy Points:
    0
    How though?
     
  8. Enthousiast

    Enthousiast MDL Tester

    Joined:
    Oct 30, 2009
    Messages:
    35,566
    Likes Received:
    59,630
    Trophy Points:
    450
    Before you run W10MUI, export the non N editions to a new install.wim and replace the original one with the new install.wim.
     
  9. Hacker?pcs

    Hacker?pcs MDL Junior Member

    Joined:
    May 28, 2009
    Messages:
    51
    Likes Received:
    19
    Trophy Points:
    0
    Are there instructions on how to do that?
     
  10. Enthousiast

    Enthousiast MDL Tester

    Joined:
    Oct 30, 2009
    Messages:
    35,566
    Likes Received:
    59,630
    Trophy Points:
    450
    There should be some basic dism knowledge, but here you go:

    Code:
    dism /Export-Image /SourceImageFile:"x:\install.wim" /SourceIndex:y /DestinationImageFile:"z:\install.wim" /Compress:max
    x = source install.wim
    y = the desired index to be exported
    z = target install.wim, containing the non N indexes

    You have to rerun this line with all indexes specified, you want to export.
     
  11. Hacker?pcs

    Hacker?pcs MDL Junior Member

    Joined:
    May 28, 2009
    Messages:
    51
    Likes Received:
    19
    Trophy Points:
    0
    I don't have much experience with dism :p , thanks for the help!