<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Mahesh Kukreja - Webmaster, SEO Blog, Make Money Online &#187; autorun</title>
	<atom:link href="http://www.maheshkukreja.com/tag/autorun/feed" rel="self" type="application/rss+xml" />
	<link>http://www.maheshkukreja.com</link>
	<description></description>
	<lastBuildDate>Thu, 09 Sep 2010 07:15:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Create Autorun for your CD&#8217;s and DVD&#8217;s</title>
		<link>http://www.maheshkukreja.com/create-autorun-for-your-cds-and-dvds</link>
		<comments>http://www.maheshkukreja.com/create-autorun-for-your-cds-and-dvds#comments</comments>
		<pubDate>Thu, 04 Dec 2008 11:34:16 +0000</pubDate>
		<dc:creator>Admin</dc:creator>
				<category><![CDATA[Computer Tricks]]></category>
		<category><![CDATA[autorun]]></category>
		<category><![CDATA[cd]]></category>
		<category><![CDATA[create]]></category>
		<category><![CDATA[dvd]]></category>

		<guid isPermaLink="false">http://www.maheshkukreja.com/?p=114</guid>
		<description><![CDATA[The compact disk drive auto play feature, common to most operating systems, is a good way to simplify user experience. Auto play is controlled by a simple text-only file called autorun.inf. While there are dozens of software utilities available that will help you create the file, all you really need is a text editor and [...]]]></description>
			<content:encoded><![CDATA[<p></p><a class="google_buzz"  
href="http://www.google.com/reader/link?url=http://www.maheshkukreja.com/create-autorun-for-your-cds-and-dvds&title=Create+Autorun+for+your+CD&#8217;s+and+DVD&#8217;s&srcURL=http://www.maheshkukreja.com" target="_blank" rel="nofollow" onclick="pageTracker._trackPageview('/outgoing/www.google.com/reader/link?url=http_//www.maheshkukreja.com/create-autorun-for-your-cds-and-dvds_title=Create+Autorun+for+your+CD_8217_s+and+DVD_8217_s_srcURL=http_//www.maheshkukreja.com&amp;referer=');"><img
src="http://www.maheshkukreja.com/wp-content/plugins/google-buzz-button-for-wordpress/images/google-buzz.png" alt="Google Buzz" /></a><div class="tweetmeme_button" style="float: left; margin-right: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fwww.maheshkukreja.com%2Fcreate-autorun-for-your-cds-and-dvds" onclick="pageTracker._trackPageview('/outgoing/api.tweetmeme.com/share?url=http_3A_2F_2Fwww.maheshkukreja.com_2Fcreate-autorun-for-your-cds-and-dvds&amp;referer=');"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fwww.maheshkukreja.com%2Fcreate-autorun-for-your-cds-and-dvds&amp;source=MaheshKukreja&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>The compact disk drive auto play feature, common to most operating systems, is a good way to simplify user experience. Auto play is controlled by a simple text-only file called autorun.inf. While there are dozens of software utilities available that will help you create the file, all you really need is a text editor and some basic knowledge.</p>
<h2>Solution One: Create autorun.inf</h2>
<p>The basic configuration of the autorun.inf states the program to run when the CD is inserted in the drive and the icon to display when the disk is viewed by Windows Explorer or other directory listing software. The text-only file, which resides in the root directory of the CD, should follow this pattern:</p>
<blockquote><p><em>[autorun]<br />
open=myprogram.exe<br />
icon=myicon.ico</em></p></blockquote>
<p>The icon file should also reside in the root directory of the CD.</p>
<h2>Variations</h2>
<p>Often the program you want to run will not be located in the root directory of the CD. If that is the case you must include the path:</p>
<blockquote><p><em>[autorun]<br />
open=folder1\folder1A\myfile.exe<br />
icon=myicon.ico</em></p></blockquote>
<p>Sometimes you may need to pass an argument to the program to be auto played:</p>
<blockquote><p><em>[autorun]<br />
open=myprogram.exe /argument<br />
icon=myicon.ico</em></p></blockquote>
<h2>Not a program</h2>
<p>Sending customers, salespeople, investors, and employees presentations, PDF files, and HTML documents requires a slight variation to the basic autorun.inf file and the addition of a DOS batch file to the CD root directory. The <em>autorun.inf</em> file opens a batch file, which then opens the file using the default program designated for that file type. For example:</p>
<blockquote><p><em>[autorun]<br />
open=autorun.bat index.htm<br />
icon=myicon.ico</em></p></blockquote>
<p>And the autorun.bat file reads:</p>
<blockquote><p><em>echo off<br />
@start %1 %2 %3 %4 %5 %6 %7 %8 %9<br />
@exit</em></p></blockquote>
<p>There is a variation on this idea that takes advantage of the <em>ShellExecute</em> command:</p>
<blockquote><p><em>[autorun]<br />
ShellExecute=index.htm<br />
icon=training.ico</em></p></blockquote>
<p>Using the autorun.inf file to auto play your burned CDs will prevent another headache for your users and increase the likelihood of reaching your target audience. And because it is a simple text file, it can be created with a text editor and your normal disk-burning software.</p>
<h2>Solution Two: Create autorun.inf</h2>
<p>While creating your autorun.inf file according to Solution One will work for most of your users, it will fail for a small percentage who have issues with the autorun function in their particular installation of Windows. The batch file in the first solution makes no allowances for errors and will merely fail when an error is encountered.</p>
<p>This is where a shell utility can save the day, because these third-party applications contain routines for handling common errors and will complete the autorun process even if an error is encountered. For this example, we’ll use <em>autorun.exe</em>, which can be downloaded from <a href="http://www.tarma.com/index.htm#/products/autorun/index.htm" target="_blank" onclick="pageTracker._trackPageview('/outgoing/www.tarma.com/index.htm_/products/autorun/index.htm?referer=');">Tarma Software Research</a>. Tarma has made autorun.exe freely available for both personal and commercial use, and there are no requirements for copyright notices, etc.</p>
<p>To use autorun.exe, you make a simple modification to the autorun.inf file by replacing autorun.bat with the .exe file. The basic autorun.inf under this scenario would look like this:</p>
<blockquote><p><em>[autorun]<br />
open=autorun.exe index.htm<br />
icon=myicon.ico</em></p></blockquote>
<p>The only other requirement is that a copy of the 8KB autorun.exe file be included in the root directory of each burned CD. This application also contains several options and supports an extended autorun.inf structure that provides more flexibility in how you design your CD package.</p>


<div class="shr-bookmarks shr-bookmarks-expand shr-bookmarks-center shr-bookmarks-bg-shr">
<ul class="socials">
		<li class="shr-delicious">
			<a href="http://delicious.com/post?url=http://www.maheshkukreja.com/create-autorun-for-your-cds-and-dvds&amp;title=Create+Autorun+for+your+CD%27s+and+DVD%27s" rel="nofollow" class="external" title="Share this on del.icio.us" onclick="pageTracker._trackPageview('/outgoing/delicious.com/post?url=http_//www.maheshkukreja.com/create-autorun-for-your-cds-and-dvds_amp_title=Create+Autorun+for+your+CD_27s+and+DVD_27s&amp;referer=');">Share this on del.icio.us</a>
		</li>
		<li class="shr-digg">
			<a href="http://digg.com/submit?phase=2&amp;url=http://www.maheshkukreja.com/create-autorun-for-your-cds-and-dvds&amp;title=Create+Autorun+for+your+CD%27s+and+DVD%27s" rel="nofollow" class="external" title="Digg this!" onclick="pageTracker._trackPageview('/outgoing/digg.com/submit?phase=2_amp_url=http_//www.maheshkukreja.com/create-autorun-for-your-cds-and-dvds_amp_title=Create+Autorun+for+your+CD_27s+and+DVD_27s&amp;referer=');">Digg this!</a>
		</li>
		<li class="shr-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://www.maheshkukreja.com/create-autorun-for-your-cds-and-dvds&amp;title=Create+Autorun+for+your+CD%27s+and+DVD%27s" rel="nofollow" class="external" title="Stumble upon something good? Share it on StumbleUpon" onclick="pageTracker._trackPageview('/outgoing/www.stumbleupon.com/submit?url=http_//www.maheshkukreja.com/create-autorun-for-your-cds-and-dvds_amp_title=Create+Autorun+for+your+CD_27s+and+DVD_27s&amp;referer=');">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="shr-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://www.maheshkukreja.com/create-autorun-for-your-cds-and-dvds&amp;t=Create+Autorun+for+your+CD%27s+and+DVD%27s" rel="nofollow" class="external" title="Share this on Facebook" onclick="pageTracker._trackPageview('/outgoing/www.facebook.com/share.php?v=4_amp_src=bm_amp_u=http_//www.maheshkukreja.com/create-autorun-for-your-cds-and-dvds_amp_t=Create+Autorun+for+your+CD_27s+and+DVD_27s&amp;referer=');">Share this on Facebook</a>
		</li>
		<li class="shr-mixx">
			<a href="http://www.mixx.com/submit?page_url=http://www.maheshkukreja.com/create-autorun-for-your-cds-and-dvds&amp;title=Create+Autorun+for+your+CD%27s+and+DVD%27s" rel="nofollow" class="external" title="Share this on Mixx" onclick="pageTracker._trackPageview('/outgoing/www.mixx.com/submit?page_url=http_//www.maheshkukreja.com/create-autorun-for-your-cds-and-dvds_amp_title=Create+Autorun+for+your+CD_27s+and+DVD_27s&amp;referer=');">Share this on Mixx</a>
		</li>
		<li class="shr-friendfeed">
			<a href="http://www.friendfeed.com/share?title=Create+Autorun+for+your+CD%27s+and+DVD%27s&amp;link=http://www.maheshkukreja.com/create-autorun-for-your-cds-and-dvds" rel="nofollow" class="external" title="Share this on FriendFeed" onclick="pageTracker._trackPageview('/outgoing/www.friendfeed.com/share?title=Create+Autorun+for+your+CD_27s+and+DVD_27s_amp_link=http_//www.maheshkukreja.com/create-autorun-for-your-cds-and-dvds&amp;referer=');">Share this on FriendFeed</a>
		</li>
		<li class="shr-twitter">
			<a href="http://twitter.com/home?status=RT+%40+MaheshKukreja+Create+Autorun+for+your+CD%27s+and+DVD%27s+-+http://bit.ly/2PFQeu&amp;source=shareaholic" rel="nofollow" class="external" title="Tweet This!" onclick="pageTracker._trackPageview('/outgoing/twitter.com/home?status=RT+_40+MaheshKukreja+Create+Autorun+for+your+CD_27s+and+DVD_27s+-+http_//bit.ly/2PFQeu_amp_source=shareaholic&amp;referer=');">Tweet This!</a>
		</li>
		<li class="shr-technorati">
			<a href="http://technorati.com/faves?add=http://www.maheshkukreja.com/create-autorun-for-your-cds-and-dvds" rel="nofollow" class="external" title="Share this on Technorati" onclick="pageTracker._trackPageview('/outgoing/technorati.com/faves?add=http_//www.maheshkukreja.com/create-autorun-for-your-cds-and-dvds&amp;referer=');">Share this on Technorati</a>
		</li>
		<li class="shr-reddit">
			<a href="http://reddit.com/submit?url=http://www.maheshkukreja.com/create-autorun-for-your-cds-and-dvds&amp;title=Create+Autorun+for+your+CD%27s+and+DVD%27s" rel="nofollow" class="external" title="Share this on Reddit" onclick="pageTracker._trackPageview('/outgoing/reddit.com/submit?url=http_//www.maheshkukreja.com/create-autorun-for-your-cds-and-dvds_amp_title=Create+Autorun+for+your+CD_27s+and+DVD_27s&amp;referer=');">Share this on Reddit</a>
		</li>
		<li class="shr-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://www.maheshkukreja.com/create-autorun-for-your-cds-and-dvds&amp;title=Create+Autorun+for+your+CD%27s+and+DVD%27s&amp;summary=The%20compact%20disk%20drive%20auto%20play%20feature%2C%20common%20to%20most%20operating%20systems%2C%20is%20a%20good%20way%20to%20simplify%20user%20experience.%20Auto%20play%20is%20controlled%20by%20a%20simple%20text-only%20file%20called%20autorun.inf.%20While%20there%20are%20dozens%20of%20software%20utilities%20available%20that%20will%20help%20you%20create%20the%20file%2C%20all%20you%20really%20need&amp;source=Mahesh Kukreja - Webmaster, SEO Blog, Make Money Online" rel="nofollow" class="external" title="Share this on LinkedIn" onclick="pageTracker._trackPageview('/outgoing/www.linkedin.com/shareArticle?mini=true_amp_url=http_//www.maheshkukreja.com/create-autorun-for-your-cds-and-dvds_amp_title=Create+Autorun+for+your+CD_27s+and+DVD_27s_amp_summary=The_20compact_20disk_20drive_20auto_20play_20feature_2C_20common_20to_20most_20operating_20systems_2C_20is_20a_20good_20way_20to_20simplify_20user_20experience._20Auto_20play_20is_20controlled_20by_20a_20simple_20text-only_20file_20called_20autorun.inf._20While_20there_20are_20dozens_20of_20software_20utilities_20available_20that_20will_20help_20you_20create_20the_20file_2C_20all_20you_20really_20need_amp_source=Mahesh_Kukreja_-_Webmaster_SEO_Blog_Make_Money_Online&amp;referer=');">Share this on LinkedIn</a>
		</li>
		<li class="shr-googlebookmarks">
			<a href="http://www.google.com/bookmarks/mark?op=add&amp;bkmk=http://www.maheshkukreja.com/create-autorun-for-your-cds-and-dvds&amp;title=Create+Autorun+for+your+CD%27s+and+DVD%27s" rel="nofollow" class="external" title="Add this to Google Bookmarks" onclick="pageTracker._trackPageview('/outgoing/www.google.com/bookmarks/mark?op=add_amp_bkmk=http_//www.maheshkukreja.com/create-autorun-for-your-cds-and-dvds_amp_title=Create+Autorun+for+your+CD_27s+and+DVD_27s&amp;referer=');">Add this to Google Bookmarks</a>
		</li>
		<li class="shr-yahoobuzz">
			<a href="http://buzz.yahoo.com/submit/?submitUrl=http://www.maheshkukreja.com/create-autorun-for-your-cds-and-dvds&amp;submitHeadline=Create+Autorun+for+your+CD%27s+and+DVD%27s&amp;submitSummary=The%20compact%20disk%20drive%20auto%20play%20feature%2C%20common%20to%20most%20operating%20systems%2C%20is%20a%20good%20way%20to%20simplify%20user%20experience.%20Auto%20play%20is%20controlled%20by%20a%20simple%20text-only%20file%20called%20autorun.inf.%20While%20there%20are%20dozens%20of%20software%20utilities%20available%20that%20will%20help%20you%20create%20the%20file%2C%20all%20you%20really%20need&amp;submitCategory=science&amp;submitAssetType=text" rel="nofollow" class="external" title="Buzz up!" onclick="pageTracker._trackPageview('/outgoing/buzz.yahoo.com/submit/?submitUrl=http_//www.maheshkukreja.com/create-autorun-for-your-cds-and-dvds_amp_submitHeadline=Create+Autorun+for+your+CD_27s+and+DVD_27s_amp_submitSummary=The_20compact_20disk_20drive_20auto_20play_20feature_2C_20common_20to_20most_20operating_20systems_2C_20is_20a_20good_20way_20to_20simplify_20user_20experience._20Auto_20play_20is_20controlled_20by_20a_20simple_20text-only_20file_20called_20autorun.inf._20While_20there_20are_20dozens_20of_20software_20utilities_20available_20that_20will_20help_20you_20create_20the_20file_2C_20all_20you_20really_20need_amp_submitCategory=science_amp_submitAssetType=text&amp;referer=');">Buzz up!</a>
		</li>
		<li class="shr-googlebuzz">
			<a href="http://www.google.com/buzz/post?url=http://www.maheshkukreja.com/create-autorun-for-your-cds-and-dvds&amp;imageurl=" rel="nofollow" class="external" title="Post on Google Buzz" onclick="pageTracker._trackPageview('/outgoing/www.google.com/buzz/post?url=http_//www.maheshkukreja.com/create-autorun-for-your-cds-and-dvds_amp_imageurl=&amp;referer=');">Post on Google Buzz</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>

 <br><strong>Related Posts</strong> <ul>  <li> <a onClick="window.location='http://bte.tc/DTY'; return false;" href="http://www.maheshkukreja.com/remove-arrows-from-your-shortcut-icons">Remove "Arrows" from your Shortcut Icons</a> </li> <li> <a onClick="window.location='http://bte.tc/Fpx'; return false;" href="http://www.maheshkukreja.com/list-of-55-rss-directories-promote-your-rss-feeds">List of 55 RSS Directories - Promote Your RSS Feeds</a> </li> <li> <a onClick="window.location='http://bte.tc/HcQ'; return false;" href="http://www.maheshkukreja.com/white-hat-seo-techniques">White Hat SEO Techniques</a> </li> <li> <a onClick="window.location='http://bte.tc/GNW'; return false;" href="http://www.maheshkukreja.com/configure-microsoft-word-excel-2007-to-save-file-in-97-2003-format">Configure Microsoft Word, Excel 2007 to save file in 97-2003 format</a> </li> <li> <a onClick="window.location='http://bte.tc/AM-'; return false;" href="http://www.maheshkukreja.com/download-any-dll-file-that-is-missing-in-your-computer">Download any .dll file that is Missing in Your Computer</a> </li> </ul> <br><strong>Related Websites</strong> <ul>  <li> <a onClick="pageTracker._trackPageview('/outgoing/www.letsgeek.net/2010/01/how-to-programmatically-open-folder/?referer=');window.location='http://bte.tc/ccUA'; return false;" href="http://www.letsgeek.net/2010/01/how-to-programmatically-open-folder/">How To: Programmatically Open Folders</a> </li> <li> <a onClick="pageTracker._trackPageview('/outgoing/www.askthewealthsquad.com/blog/free-business-software-open-office-vs-microsoft-office/?referer=');window.location='http://bte.tc/gqD'; return false;" href="http://www.askthewealthsquad.com/blog/free-business-software-open-office-vs-microsoft-office/">Free Business Software - Open Office Vs Microsoft Office</a> </li> <li> <a onClick="pageTracker._trackPageview('/outgoing/www.buildify.com/2-other-options-for-corporate-blogs/?referer=');window.location='http://bte.tc/Exm'; return false;" href="http://www.buildify.com/2-other-options-for-corporate-blogs/">2 Other Options for Corporate Blogs</a> </li> <li> <a onClick="pageTracker._trackPageview('/outgoing/cleanup-registry.net/how-can-i-change-a-windows-registry-value-if-i-cannot-enter-windows/?referer=');window.location='http://bte.tc/zH4'; return false;" href="http://cleanup-registry.net/how-can-i-change-a-windows-registry-value-if-i-cannot-enter-windows/">How can I change a windows registry value if I cannot enter windows?</a> </li> <li> <a onClick="pageTracker._trackPageview('/outgoing/fabiezone.com/google-sitemaps_e2_80_99-useful-seo-tools?referer=');window.location='http://bte.tc/cD2s'; return false;" href="http://fabiezone.com/google-sitemaps%e2%80%99-useful-seo-tools">Google Sitemaps’ Useful SEO Tools</a> </li> </ul>]]></content:encoded>
			<wfw:commentRss>http://www.maheshkukreja.com/create-autorun-for-your-cds-and-dvds/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/


Served from: www.maheshkukreja.com @ 2010-09-09 16:56:51 -->