Hello,
Need some suggestions on how to combine 2 Windows 7 ISO files (one is x86 and other is x64), into one single bootable ISO file which can then be burnt on a DVD-R or Dual Layer DVD, and even on USB afterwards.
Thanks.
Hello,
Need some suggestions on how to combine 2 Windows 7 ISO files (one is x86 and other is x64), into one single bootable ISO file which can then be burnt on a DVD-R or Dual Layer DVD, and even on USB afterwards.
Thanks.
If you want a single Win7 installer that works from DVD and USB without third‑party bundlers, you can do it with Microsoft’s own tools: merge the images with DISM, then build a BIOS+UEFI‑bootable ISO with oscdimg. Heads‑up: for UEFI installs you must use x64 boot files; x86 Win7 does not UEFI‑boot, and on most hardware you will need CSM enabled and Secure Boot off. (learn.microsoft.com)
Quick workflow (keeping x64 as the base so you retain EFI support):
dism /Get-WimInfo /WimFile:C:\AIO\x64\sources\install.wim
dism /Export-Image /SourceImageFile:C:\AIO\x64\sources\install.wim /SourceIndex:1 ^
/DestinationImageFile:C:\AIO\build\sources\install.wim /Compress:max /DestinationName:"Windows 7 Pro x64"
dism /Export-Image /SourceImageFile:C:\AIO\x86\sources\install.wim /SourceIndex:1 ^
/DestinationImageFile:C:\AIO\build\sources\install.wim /Compress:max /DestinationName:"Windows 7 Pro x86" DISM’s Export‑Image is the supported way to combine WIM indexes. (learn.microsoft.com)
Optional: delete C:\AIO\build\sources\ei.cfg so Setup shows the available editions (otherwise it may auto‑select one). (systemscenter.ru)
Create a BIOS+UEFI bootable ISO:
oscdimg -m -o -u2 -udfver102 -lWIN7AIO ^
-bootdata:2#p0,e,bC:\AIO\build\boot\etfsboot.com#pEF,e,bC:\AIO\build\efi\microsoft\boot\efisys.bin ^
C:\AIO\build C:\AIO\Win7-AIO.iso This uses etfsboot.com for BIOS and efisys.bin for UEFI, as documented by Microsoft. Burn to DL DVD if it will not fit a single‑layer disc. (learn.microsoft.com)
Notes:
Jump to Post— rproffitt 3,249It appears folk have written web pages about this. Here's how I found them: https://www.google.com/search?q=combine+Windows+7+32+and+64+bit+installer
It appears folk have written web pages about this. Here's how I found them: https://www.google.com/search?q=combine+Windows+7+32+and+64+bit+installer
Maybe you inadvertantly solved it with a two step process. Now that you have that USB bootable working, try this:
https://www.google.com/search?q=convert+bootable+usb+to+dvd
We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.