I want a quick way to burn a ZIP file into an ISO file so I use NeroCmd.exe which is the command-line tool for Nero. When I'm using the following command:
NeroCmd --write --drivename "Image Recorder" --real --iso isoName rarFile.rar
The problem is that it prompts for the image name and I don't know if it's possible to specify it in the parameters and which parameter should I include, supposing the image name is "Image.iso".
EDIT:
I tried using --output_image test.iso
, so my final code is:
NeroCmd --write --no_error_log --drivename "Image Recorder" --real --iso Drive --enable_abort --underrun_prot --output_image Image.iso --verify rarFile.rar
But no file was created, here's the console output:
PHASE: Unspecified
[i] Generation of disc structures started
Creating directories
[i] Creating directories
PHASE: Unspecified
[i] Generation of disc structures completed
Checking discs
[i] Checking discs
Enter file name to save image to (RETURN to abort): GameSetup.iso
There is not enough space available to burn the image.
Enter file name to save image to (RETURN to abort): Not enough space available in the given location.
[!] Canceled by user
ERROR: The operation cannot be performed without user interaction!
User aborted!
The command works perfectly without that parameter, but the problem is it prompts.
Manual, see link provided by David, section 5.9 Write Image:
--output_image <filename>
Specify output image file name if image recorder is used to avoid prompting for file name.