• Twitter
  • Technocrati
  • stumbleupon
  • flickr
  • digg
  • youtube
  • facebook

Follow our Network

Tips n Tricks

0

Labels:

Easy way to create CD Autorun

CD Autorun is always good idea when distribute something on Cdsfor the ease of the users. There are many softwares available
for this purpose though they have many advanced features but
normal requirement is to launch a specific file from cd which
you can do easily by this way.

Here is very simplest way to make cd autorun, You need to
create two files one file is autorun.inf and the second one is autorun.bat
1- autorun.inf
When CD inserted into computer this file launch the Dos based
batch file autorun.bat.

To create this file open Notepad and type the following

[autorun]
open=autorun.bat

and save the file as autrun.inf
2-autorun.bat
Now create this file, it contains the
instruction which launch specific file on cd.

To create this file again open Notepad and type the following

@echo Loading CD
@start file.htm
@cls
@exit

and save the file as autorun.bat

You need to change the file.htm with that file name
which you want to launch but remember that file must be
on the root of the CD.

Now copy both files autorun.inf and autorun.bat on the
root of CD along with your data and burn it.

Now every time when you want to make autorun enabled cd
just copy the both files on the root of CD and only change
the file name in autorun.bat

Comments (0)