HOW TO CREATE AUTORUN CD

by 6:55 PM 2 comments
To create a CD that will auto-run is actually very simple. All you need to do is to create the file ‘AUTORUN.INF’ in the CD's root directory and put some simple commands in the file to indicate what you want to be auto-run. The file ‘AUTORUN.INF is a simple text file - so use notepad to edit it.

The ‘AUTORUN.INF’ file must start with the following line:

[autorun]
It can then include any of the following (optional) commands - with each command placed on a separate line:

icon=icon.ico Specifies the name of the icon file that will be used by explorer as the icon for that CD. 
This may be the name of an executable file that contains an icon. If the executable contains more than one icon then an optional index field can be specified to indicate which icon to use:

icon=iconfile,index
 
label=text label Text label that will be displayed against the CD within explorer. 
open=exefile Specifies the command that is to be autorun when the CD is first inserted. It may include a path and any arguments. 
ShellExecute=datafile Specifies an application or data file that is to be opened. Windows will launch the application associated with that file type to open the datafile. 
Note: ShellExecute is not supported under older versions of Windows (i.e. under Windows 95 or Window 98).
 

For example to create a CD that will autorun the program ‘setup.exe’ would require an AUTORUN.INF file similar to:

[autorun]
open=setup.exe
icon=setup.exe
To create a CD that will autorun to open the html file ‘index.htm’ would require:

[autorun]
ShellExecute=index.htm
icon=index.htm
However, since some older versions of Windows do not support ‘ShellExecute’ a less elegant alternative would be:

[autorun]
open=command /c start index.htm
icon=index.htm
Be aware that the use of ‘command’ and ‘start’ restrict this to machines running Windows.

Unknown

Developer, Educator, Youtuber

I love to spend time with kids, Exploring Internet, Developing Website and Youtbe Videos

2 comments:

  1. hay i am prince you are being able to goodwork i hope you should achive day by day

    ReplyDelete
  2. thanks for your comment now i will update regularly .......

    ReplyDelete