How to build a CD ISO image file from the windows command line? – Stack Overflow
Posted by jpluimers on 2021/12/07
As I might need this in the future, some highlights from [Wayback] How to build a CD ISO image file from the windows command line? – Stack Overflow:
mkisofs
, part of [Wayback] cdrtools (formerly cdrecord) with separately hosted [Wayback] win32 builds (and some win64) and [Wayback] sources on sourceforge.net (it is also available for many other platforms).
Examples:
mkisofs -v -dvd-video -V "VOLUME_NAME" -o "c:\my movies\iso\movie.iso" "c:\my movies\dvd" mkisofs -r -R -J -l -L -o image-file.iso c:\project\install
- The GitHub hosted open source .NET Core project [WayBack] DiscUtils that besides the ISO file system also supports many other file systems (like UDF, FAT and NTFS) and disc formats (like VHD, VDI, XVA, VMDK, etc).
- The commandline part
cdbxpcmd
of [Wayback] cdburnerxp.
With some examples:
cdbxpcmd --burn-data -folder:input -iso:output.iso -format:iso -changefiledates
cdbxpcmd --burn-data -layout:mycompilation.dxp -iso:output.iso -format:iso
- The built-in Windows API IMAPI which [Wayback] can be found in MSDN with some examples at:
- [Wayback] com – Create ISO image using PowerShell: how to save IStream to file? – Stack Overflow
- [Wayback] Demo for PowerShell script to create ISO using IMAPI COM component, as a simplification for StackOverflow answer http://stackoverflow.com/a/8325316/223837
- [Wayback] https://stackoverflow.com/a/46068167
–jeroen
Leave a Reply