How to add all x64 Retail and Volume editions into one ISO?

Discussion in 'Windows 10' started by Outbreaker, Jul 6, 2018.

  1. Outbreaker

    Outbreaker MDL Member

    Joined:
    Jan 20, 2018
    Messages:
    142
    Likes Received:
    27
    Trophy Points:
    10
    HI,
    Does someone know how to add all x64 Retail and Volume editions into one ISO file?
     
  2. tnx

    tnx MDL Expert

    Joined:
    Sep 2, 2008
    Messages:
    1,659
    Likes Received:
    256
    Trophy Points:
    60
    I have seen many threads about this, well it puzzles me. So can I ask why ?

    Why do you want all the editions on one .iso file ?

    Not trying to be funny or owt.:cool:
     
  3. Enthousiast

    Enthousiast MDL Tester

    Joined:
    Oct 30, 2009
    Messages:
    35,561
    Likes Received:
    59,628
    Trophy Points:
    450
    Code:
    dism /Export-Image /SourceImageFile:"x:\install.wim" /all /DestinationImageFile:"y:\install.wim" /Compress:max /checkintegrity
    
    There really is no need for putting all VL indices into the same install.wim as the OEMRET, it's only Enterprise that is missing on the OEMRET client consumer iso.
     
  4. Mr.X

    Mr.X MDL Guru

    Joined:
    Jul 14, 2013
    Messages:
    7,625
    Likes Received:
    14,952
    Trophy Points:
    240
  5. Outbreaker

    Outbreaker MDL Member

    Joined:
    Jan 20, 2018
    Messages:
    142
    Likes Received:
    27
    Trophy Points:
    10
    #5 Outbreaker, Jul 6, 2018
    Last edited: Jul 6, 2018
    (OP)
    I want all the editions in one .ISO file so that i can use Windows 10 with all the CD-Key's and HWID's if needed.
    So if i get this right then all the Business Editions (except the Enterprise one) are the same once as in the Consumer Editions?
     
  6. Enthousiast

    Enthousiast MDL Tester

    Joined:
    Oct 30, 2009
    Messages:
    35,561
    Likes Received:
    59,628
    Trophy Points:
    450
  7. Outbreaker

    Outbreaker MDL Member

    Joined:
    Jan 20, 2018
    Messages:
    142
    Likes Received:
    27
    Trophy Points:
    10
    Would this be the right way of doing it?:

    Code:
    @ECHO OFF
    TITLE test
    PUSHD "%~dp0"
    
    ECHO Extracting ISO files...
    "C:\Program Files\7-Zip\7z.exe" x "SVF.ISO.CONVERTER-master\en_windows_10_consumer_editions_version_*.iso" -y -o"ISOfile\C" -r
    "C:\Program Files\7-Zip\7z.exe" x "SVF.ISO.CONVERTER-master\en_windows_10_business_editions_version_*.iso" -y -o"ISOfile\B" -r
    PAUSE
    ECHO Importing Enterprise images...
    dism /Export-Image /SourceImageFile:"D:\ESD\ISOfile\B\sources\install.wim" /SourceName:"Windows 10 Enterprise" /DestinationImageFile:"D:\ESD\ISOfile\C\sources\install.wim" /Compress:max /checkintegrity
    dism /Export-Image /SourceImageFile:"D:\ESD\ISOfile\B\sources\install.wim" /SourceName:"Windows 10 Enterprise N" /DestinationImageFile:"D:\ESD\ISOfile\C\sources\install.wim" /Compress:max /checkintegrity
    
    ECHO Creating bootable ISO file...
    "D:\ESD\cdimage.exe" -bootdata:2#p0,e,b"D:\ESD\ISOfile\C\boot\etfsboot.com"#pEF,e,b"D:\ESD\ISOfile\C\efi\Microsoft\boot\efisys.bin" -o -m -u2 -udfver102 -g -l"MyWin10DVD" "D:\ESD\ISOfile\C" "D:\ESD\ISOfile\MyWin10DVD.ISO"
    
    PAUSE
    EXIT