Is it possible to burn an iso image to a DVD using cmd in Windows 7 or 8?

12

3

Is that possible to burn an .iso file to a DVD using command prompt in Windows 7 or 8?

If yes, how would I do that?

Avinash Raj

Posted 2014-02-04T15:50:45.980

Reputation: 735

Duplicate of Write a DVD from the Windows Command Line

– Synetech – 2014-02-07T22:45:47.787

1But the original question's answer doesn't explains how to burn iso images to DVD via cmd,it lists only the tools available. And also if I burn The iso file using the below answer ,does it make the DVD to bootable? – Avinash Raj – 2014-02-08T03:38:22.137

But the original question's answer doesn't explains how to burn iso images to DVD via cmd,it lists only the tools available. Then read the tools’ documentations and/or use their help-switches to find out their syntax. Alternately, add a comment and/or bounty to that question; no reason to re-ask the same question. if I burn The iso file using the below answer ,does it make the DVD to bootable? If you burn a bootable .iso file using any method, then it will be bootable. – Synetech – 2014-02-08T04:18:47.710

Answers

16

Yes it is possible to burn iso files from the windows command line, however only in Windows 7 and above.

How to Burn an Image from the Command Line in Windows

ISO or IMG image files can be burned in both Windows 7 or 8 from the command line quite easily. First, open the Command Prompt and then type isoburn to get the following guick syntax guide. As has been noted in the discussion below, you don't need to reference.exe since it lives in the system32 folder.

enter image description here

Start isoburn.exe using the following command and parameters:

Syntax:

isoburn.exe /q [the CD/DVD writing drive] 

Example:

isoburn.exe /q D: C:\Users\JDoe\Desktop\image.iso

enter image description here

After a few moments, you'll see:

enter image description here

While yes, the process can be fired up from the command line, this window may still need to be closed by hand.

See Also:

http://www.tutorialized.com/tutorial/The-Complete-Guide-to-Burning-Disk-Images-(ISO-&-IMG)-In-Windows-7/71219

MDT Guy

Posted 2014-02-04T15:50:45.980

Reputation: 3 683

Does the DVD bootable? – Avinash Raj – 2014-02-08T03:39:29.500

if the iso was created as a bootable image, then yeah, but if it's just files, no. it just depends how the iSO was compiled. – MDT Guy – 2014-02-08T14:58:14.633

4

isoburn /q <drive letter>: <disc image>

that should work.

shinjijai

Posted 2014-02-04T15:50:45.980

Reputation: 1 391

isoburn.exe or only isoburn ? – Avinash Raj – 2014-02-04T16:02:31.403

you can use either, since they refer to the same program. – shinjijai – 2014-02-04T16:17:32.733

@AvinashRaj - You will need to provide the full path to the installation directory of isoburn the file extension is optional in a case like this. – Ramhound – 2014-02-04T16:40:48.980

<disc image> means path to the image file? – Avinash Raj – 2014-02-04T16:43:32.967

isoburn.exe is located in C:\windows\system32, so you can run it in any folder without the full path. I suggest going to the folder where you hold the image file and do isoburn /q d: "image name.iso" – shinjijai – 2014-02-04T16:48:50.003

isoBurn is not a system utility you sure it's in a the System32 system folder? – Ramhound – 2014-02-04T22:45:32.607

I've confirmed it on Windows 7, Windows 8, and Windows 8.1. – shinjijai – 2014-02-05T03:12:09.460

@Ramhound It's a standard part of Windows since Vista. 2008 and 2012 server have it too. – Tonny – 2014-02-07T23:08:22.237

The only IsoBurn I find is a portable application...wierd – Ramhound – 2014-02-08T01:01:26.463

1

Alternatively you could use ImgBurn, which has great command line support and tons of extra options (too many to list here) over the built in isoburn.exe.

Ryan_S

Posted 2014-02-04T15:50:45.980

Reputation: 624