Good app ...but in tag ... select wim ... include option with select esd and cancel tag in iso progress window.Thanks (sory my en not good)
Hi. In my latest 2 compilations I had some problems that Ican't resolve. I hope you can help me. When I try to add some images from different WIMs, WAIOM deletes some of the images (randomly) in the final compilation. For example: I have a WIM file containing Windows 7 and Windows 8.1 images and, when I add a Windows 10 image (or more than one) and save the changes, some of the images dissapered. It's random, can be any of them. I tried to download the tool 3 times and I had always the same result. Please, I need some help- Thanks in advance.
Yes, dism export commandline: Code: dism /Export-Image /SourceImageFile:"x:\install.wim" /SourceIndex:1 /DestinationImageFile:"y:\install.wim" /Compress:max /checkintegrity
Oh thanks, I don't knew that DISM could export between images, I thought that could only extract them. Thanks again for the info.
Hi, I just tried to use the AutoAIO to make a Windows 10 AIO and I keep getting an error in creating the ISO. See pic Can anyone help with this limited information? Thank You.
Is there another similar AIO for Windows 10? From what I've been reading, it is very complicated to do it manually. Thank You
Better question using DISM. What would be the commandline for combining a 32 bit and 64 bit AIO? Thank you
The same as for exporting x86 > x86: For install.wim > install.wim Code: dism /Export-Image /SourceImageFile:"x:\install.x86.wim" /SourceIndex:1 /DestinationImageFile:"y:\install.x64.wim" /Compress:max /checkintegrity For install.wim/esd > install.esd: Code: dism /Export-Image /SourceImageFile:"x:\install.x86.wim/esd" /SourceIndex:1 /DestinationImageFile:"y:\install.x64.esd" /Compress:recovery /checkintegrity For windows 10 there are better/other options to do for a multi-arch iso. I am preparing an elaborate (using MDL tools only) AiO tutorial
can you explain /SourceIndex:1 Can you also tell me where do you tell DISM where you want to use install86.wim and install64.wim and destination install.wim? Thank You.