Create a simple ISO CD
I found a significantly simpler approach and it does not require Cygwin: CDBurnerXP
It is not advertised on the site, but includes a command line version like cdbxpcmd.exe . There is also some documentation about command line options .
Of particular interest are the options -iso and -format ; used something like:
cdbxpcmd --burn-data -folder:input -iso:output.iso -format:iso -changefiledates
to create an ISO called output.iso from files in the input folder
Create bootable ISO
The command line tool does not allow you to directly create a bootable CD. However, if you know that your list of files will not change (i.e. only the contents of these files), you can try the following (unchecked):
- Download the CDBurnerXP GUI Version
- Add files interactively
- Choose Disc-> Burn Options ...
- Set up a boot image
- Choose File-> Save to create a DXP file (this is the CDBurnerXP compilation format).
Then you can use the following command
cdbxpcmd --burn-data -layout:mycompilation.dxp -iso:output.iso -format:iso
kibibu Aug 19 '10 at 6:53 2010-08-19 06:53
source share