Scripts created by me a long time ago for personal purposes (and you can also use them).
Both versions of 'BootableISOBuilder' have been recovered (XOR and MK).
It is a utility that allows you to generate bootable ISO files with full compatibility on all system types (LEGACY and EFI) and all boot sources (live CD-ROM/ISO and live USB) easily with just one click. To get full compatibility, the script auto-detects the files related to system types + boot sources from the root input folder to generate the corresponding bootable ISO file. This utility has two versions:
- XOR version (ISObuilderXOR.bat): The engine of this script is xorriso (from libburnia project). 7-Zip is required to internally process some files. This version creates enhanced ISO files with ISOHybrid MBR (if detected).
- MK version (ISObuilderMK.bat): The engine of this script is mkisofs (from cdrtools). 7-Zip is not required.
Both scripts share a similar workflow, but they rely on different underlying engines and provide different levels of UEFI compatibility.
- Set fields in 'config.properties' file (if they are not configured yet):
- In 'TOOLS_PATH', put the path to the required tools ('7z.exe' + 'xorriso.exe' for XOR version or 'mkisofs.exe' for MK version). Example: TOOLS_PATH=C:\Program Files\myTools
- In 'ISO_NAME', put the name of the output ISO file. Example: ISO_NAME=myISOName
- Create the input folder with name 'inputFolder' (if it is not created yet).
- In the 'inputFolder', place the required content (consider this folder as root directory) to generate the bootable ISO file.
- Run 'ISObuilder' script (XOR or MK version, depending on what you need). If process ends OK, an output folder (named 'outputFolder') will be created with the bootable ISO file generated inside.
- Internal engine: mkisofs
- Boot support:
- β BIOS (El Torito)
- β UEFI fallback
- Recommended environments:
- VMware
- Lab / testing setups
- Limitations:
- β Not real UEFI boot (PlatformID = 0xEF)
- β Not standard hybrid BIOS + UEFI ISOs
- β Limited compatibility on real hardware
ISObuilderMK is ideal for quick tests and controlled environments, where UEFI boot relies on fallback mechanisms.
- Internal engine: xorriso
- Boot support:
- β BIOS (El Torito)
- β Real UEFI boot (PlatformID = 0xEF)
- Key features:
- β Standard hybrid BIOS + UEFI ISO
- β Embedded FAT EFI System Partition (ESP)
- β Full compatibility (real hardware and VMs)
- Suitable for:
- ISO distribution
- Professional environments
- Secure Boot (depending on the EFI bootloader)
ISObuilderXOR is the recommended option for creating UEFI-compliant, production-ready ISO images.
| Feature | ISObuilderMK | ISObuilderXOR |
|---|---|---|
| Internal engine | mkisofs | xorriso |
| BIOS boot (El Torito) | β | β |
| UEFI fallback | β | β |
| Real UEFI (PlatformID 0xEF) | β | β |
| Standard hybrid BIOS + UEFI ISO | β | β |
| VMware compatibility | β | β |
| Real hardware compatibility | β | |
| Secure Boot | β | π EFI-dependant |
| Recommended usage | Testing / lab | Production / distribution / professional environments |
- ISObuilderMK is suitable for testing and laboratory environments, specially when used with virtual machines such as VMware.
- ISObuilderXOR is the recommended tool for creating real hybrid BIOS + UEFI ISOs, fully compatible with physical hardware, VMs, and production environments.
For any professional project that requires UEFI-compliant booting or public ISO distribution, ISObuilderXOR should be used.