How to merge Enterprise and Home & Pro?

Discussion in 'Windows 10' started by werwaok, May 14, 2017.

  1. werwaok

    werwaok MDL Junior Member

    Sep 20, 2013
    60
    3
    0
    Hi guys!
    What's the easiest way to merge all Windows 10 editions, t.i. merge Enterprise with Multiple (Home & Pro)?
    I have original ESD files, and ISO images.

    Cheers!
     
  2. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,274
    94,766
    450
    Export the indexes of the install.wim/esd's to one install.wim/esd.
     
  3. werwaok

    werwaok MDL Junior Member

    Sep 20, 2013
    60
    3
    0
    Should it be something like this? ::

    dism /Export-Image /SourceImageFile:B:\hp.esd /SourceIndex:5 /DestinationImageFile:B:\combo.esd /DestinationName:"Home" /compress:recovery

    dism /Export-Image /SourceImageFile:B:\hp.esd /SourceIndex:4 /DestinationImageFile:B:\combo.esd /DestinationName:"Pro" /compress:recovery

    dism /Export-Image /SourceImageFile:B:\ent.esd /SourceIndex:4 /DestinationImageFile:B:\combo.esd /DestinationName:"Ent" /compress:recovery
     
  4. Enthousiast

    Enthousiast MDL Tester

    Oct 30, 2009
    47,274
    94,766
    450
    DISM

    For install.wim:
    Code:
    dism /Export-Image /SourceImageFile:"x:\install.wim" /SourceIndex:1 /DestinationImageFile:"y:\install.wim" /Compress:max /checkintegrity
    
    For install.esd:
    Code:
    dism /Export-Image /SourceImageFile:"x:\install.esd" /SourceIndex:1 /DestinationImageFile:"y:\install.esd" /Compress:recovery /checkintegrity
    Change paths and source index nr to your scenario.