Get Paid While Promoting Your Business!

Online Shopping

Flipkart.com
Showing posts with label create your own free CD. Show all posts
Showing posts with label create your own free CD. Show all posts

Thursday, October 8, 2009

How to create your own free CD autorun for HTML and most file types

0 comments


Assembling the CD Download and copy the files to your root directory of the CD. 


These are: autorun.inf, autorun.bat and index.html. 


You can put all sorts of files on the rest of the CD. They won't affect the autorun. You can test the autorun by burning the three files to the root directory of a test CD-R. Open the CD drive and close it again. Viola, you have just created your own autorun HTML CD. You should change the contents of index.html to whatever you need. The index.html supplied is only a test page. Changes you can make The autorun can open any type of file and display any message you want. To make changes, open Windows Notepad (do not use Word, WordPad or other Word processors). Now open the autorun.bat file from within Notepad. The order is important, if you double-click the autorun.bat file, it will try to run. So open NotePad and select File-Open and choose the autorun.bat file. You'll see four lines of code. 


The first line after @echo (remember the space) will appear as a comment in the autorun launch Window. This comment will be seen very briefly by your end-users. It can be changed to anything you want, but since it only appears for a second or less, don't make it too wordy. If you wanted to say 'The CD is loading now...', the first line of code will look like: @echo 


The CD is loading now... 


The second line of the code tells the .bat file to open to your index.html file. 


If want to open a file by another file (eg readme.txt), then it would read: @start readme.txt 


Make sure you leave the last two lines untouched (@cls and @exit) - they must always appear last. Save the changes and you are done. That that's all you need to create your own HTML autorun CD.
Read more...