Over a year ago we came out with a utility to burn files from the command line.
It was a little short on features, so this week we took some time and beefed it up.
Here are the new options:
-You can eject the drive
-You can erase disks
-You can set the label when writing to the disk
-You can close the tray
That last one was tough. Someone emailed me a while back asking if it was possible to programatically close the drive. After lots of searching we came up empty handed. During our update we found an obscure way to make it happen.
Lets see some examples.
If I wanted to backup c:\temp to my writable DVD on E: it would look like this:
If you wanted a custom volume label (It defaults to the current date), you could use this:
To eject the drive, you can call it like this:
To close that drive tray:
To erase a drive:
You can use the ERRORLEVEL value for conditional statements in your batch file (Like send you an email if it fails)
Here is an example bat file that checks the result of the BurnDisk.exe output:
REM Backup our files to DVD or CD ROM
burndisk.exe /write c:\Backup e:
REM Check our result
IF %ERRORLEVEL%==0 goto COMPLETE
REM ERROR HANDLING HERE
:COMPLETE
Get the latest copy from our website here:
One more thing…Subscribe to my newsletter and get 11 free network administrator tools, plus a 30 page user guide so you can get the most out of them. Click Here to get your free tools
{ 18 comments… read them below or add one }
If the files I want to copy to DVD require more than one DVD, is burndisk.exe able to span DVD’s the way XCOPY can span floppies?
Hi Ronny,
Burndisk is not that sophisticated….so no it can’t span. It will just give you an out of space error.
Hi,
thanks for the cool tool. Is there a way to detect if there is a empty writable CD or DVD in the drive?
Regards,
Patrick
HI Thanks for the tool. I am using windows 7. Erase and close do not work.
Any particular reason.
Regards
JPM
Is it possible to burn two folders and one file to the disk?
Hello Freeman
This sounds like an interesting option, but at this time no…there is no way to do this. You can only point it at one folder.
I get the following error when I try to burn or eject the cd:
Fatal Error: Could not init the DVD/CD Burning subsystem: Could not init
IDiscMaster2 – Error: -2147221164
You are probably running Windows XP.
I think you need to install the Image Mastering API 2.0 from MS:
http://www.microsoft.com/en-us/download/details.aspx?id=17073
Is this tool able to burn a blu ray (DL) Disk?
Thanks!
Yes it is. We will be testing it with BDXL drives soon too (50GB media)
Thanks for your answer- but BDXL is 100GB or more… 🙂
I ma having an issue using the /noheader option and the erasing option. Adfter writing a dvd-rw I add the erasing option and it fails. here are my lines for that:
burndisk.exe /noheader
burndisk.exe /erase e:
any help would be awesome!
Hi,
Are you calling them both in a row? And what is the error?
You would want to call it like this: burndisk.exe /noheader /erase e:
But maybe I am misunderstanding.
Thanks,
Steve
Great Tool
Burns blu ray like a charm
Thanks!!!
MIchael
Brilliant tool! What about adding a progress read-out while it’s burning? i.e. 50%
Hi,
this is a very nice and slim tool.
Is there any possibility for letting the CD/DVD open.
Scenaria: Backup the files every hour on the CD and only changing the CD at the end of the day, but having all files from the day available on the CD
Thanks!
Steve,
I love this tool. Is it possible to get the source code for it so I can customize it to my specific needs? If not I understand.
Hi, Steve.
I wonder why the batch file runs perfectly ok when you manually click on it, but it doesnt run when you schedule the batch file in Windows 8.1 scheduler.