Skip to content

Latest commit

 

History

History
30 lines (20 loc) · 1.27 KB

README.md

File metadata and controls

30 lines (20 loc) · 1.27 KB

DIR2ISO

An AutoIT UDF and Commandline app to create and pack local directories to a .ISO disk image.

Visit Microsoft's WinAPI Docs


Switches.

Switch Type Description Default Value Sample Usage
-i string Specify a FQPN to a Source Directory. None -i "E:\MyFolder"
-o string Specifies the output .ISO Image File. None -o "E:\MyFolder\MyISO.iso"
-l string Sets the volume name for this file system image.
Expects a String that contains the volume name for this file system image.
The string is limited to 15 characters.
Current Date in format YYYY/MM/DD -l "My Disk_2022"
Flags Type Description Default
/v-off none Turns off standard output verbosity. none none

Return codes

Value Description
0 Success.
4 An Invalid Source Directory is specified on -i switch.
5 An invalid Volume label And/or The length exceeds 15 characters.
Allowed characters are alphanumeric, underscore, colon and forward slash

Example

CL-Dir2ISOfs.exe -i "E:\Pictures" -o BirthdayPics.iso -l "24th Birthday"