Jump to content

Recommended Posts

Posted

Is there a command to prevent Confirm Volume Label dialog window from opening?

 

My batch file:

CopySW_F.bat

-----

@echo off

C:

CD\

CD Program Files

CD ImgBurn

echo Copying disc in drive F to file %1

ImgBurn.exe /MODE BUILD /OUTPUTMODE IMAGEFILE /SRC F: /DEST %1 /START /EJECT YES

-----

 

Want I want:

command "CopySW_F.bat C:\CD.bin"

To create CD image CD.bin without any input needed in ImgBurn

 

When I run this the Confirm Volume Label pops up with a 30 second delay until my system will start copying my CD.

 

 

Thanks in advance for any feedback I can get on how this should be configured.

Matt

Posted (edited)

I found the info I needed in ImgBurn.exe /?

 

This works the way I want it:

ImgBurn.exe /MODE BUILD /OUTPUTMODE IMAGEFILE /SRC F: /DEST %1 /START /VOLUMELABEL SOFTWARE /EJECT YES /NOIMAGEDETAILS /CLOSESUCCESS

 

One minor issue disc drive doesn't eject even if /EJECT YES is set.

Edited by MattH
Posted

The real info you need is in the ReadMe.txt file.

 

Why are you using Build mode to copy a disc?

 

Use Read mode.

 

/EJECT ejects the device you're reading from or writing to. You're outputting to an image file so there's no 'device' being used. (The 'source' is not a device)

Posted

Thanks that works much better. :)

 

It didn't show an example of /MODE READ in ImgBurn.exe /? so I didnt try it.

Was thinking that mode was only a verify function.

×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use.