How do I create a bootable cd?
How do icreate a bootable cd
Comment on Appzalien's post
This tiny file when imported into a burner like Nero or even into a program like Ultraiso will create a bootable cd from a data cd set. With Ultraiso it would have a generic loader at hand but would have a place for you to point to your own for a specific boot process.
Comment on Appzalien's post
Also be aware there is a big difference between a bootable disk and an autorun disk. If you just want a disk to automatically start the setup.exe of a program from within windows (boot disks work from outside in DOS) you would add an autorun inf file with instructions inside on where to start the install. Here's a typical autorun inf:
[autorun]
open=Setup.exe
icon=Setup.exe
Added to notepad, and then changing the extension from txt to inf and adding to the root of the disk (Root means not inside any folder , it has to appear directly under the disk title name) this auto run would look for the file setup.exe in the same first part of the directory. If the actual setup.exe is in a folder the path mus be included:
[autorun]
open=Setup\Install bin\Setup.exe
icon=Setup\Install bin\Setup.exe