<?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>MakeUseOf &#187; autorun</title>
	<atom:link href="http://www.makeuseof.com/tags/autorun/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.makeuseof.com</link>
	<description>Cool Websites, Software and Internet Tips</description>
	<lastBuildDate>Fri, 10 Feb 2012 14:30:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How To Auto-Launch Apps With A USB Stick [Windows]</title>
		<link>http://www.makeuseof.com/tag/autolaunch-apps-usb-stick-windows/</link>
		<comments>http://www.makeuseof.com/tag/autolaunch-apps-usb-stick-windows/#comments</comments>
		<pubDate>Thu, 22 Sep 2011 18:01:24 +0000</pubDate>
		<dc:creator>Ryan Dube</dc:creator>
				<category><![CDATA[Cool Windows Apps & Tricks]]></category>
		<category><![CDATA[application launchers]]></category>
		<category><![CDATA[autorun]]></category>
		<category><![CDATA[launchers]]></category>
		<category><![CDATA[portable app]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[USB]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=86517</guid>
		<description><![CDATA[Imagine having a USB stick with all of your favorite apps on it. Maybe a collection of PC troubleshooting utilities, or maybe an assortment of spreadsheet and word processing tools. Wouldn't it be pretty sweet if you could just walk up to any computer, put your USB memory card into the USB port, and have your favorite portable apps automatically launch?]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/usbstick2.png?323f2c" alt="auto launch usb app" />Imagine having a USB stick with all of your favorite apps on it. Maybe a collection of PC troubleshooting utilities if you&#8217;re an IT tech, or maybe an assortment of spreadsheet and word processing tools if you&#8217;re an executive road warrior. Wouldn&#8217;t it be pretty sweet if you could just walk up to any computer, put your USB memory card into the USB port, and have your favorite portable apps automatically launch without any effort on your part?</p>
<p>Over the years, system administrators have come up with various tricks to accomplish this task. Tim wrote about a few useful ways that people use <a href="http://www.makeuseof.com/tag/how-to-automate-windows-programs-on-a-schedule/">Windows Task Scheduler</a> to launch various jobs, and Varun covered a series of useful <a href="http://www.makeuseof.com/tag/awesome-tools-usb-drive-encrypt-auto-launch-auto-backup/">USB apps</a> that can come in handy. In this article, I&#8217;m going to cover a few USB auto-launch techniques that administrators have used. You might have been told that it&#8217;s impossible to auto-launch applications on your USB card on your Windows 7 computer. I&#8217;m here to show you that it is not true.</p>
<h2>How You Used to Auto-Launch USB Apps</h2>
<p>For years, at least since Windows 2000, but probably even earlier, system administrators have used the autorun.inf technique to autostart applications on a USB memory stick just like the autorun feature worked on computer CDs.</p>
<p>The autorun.inf file could be as complicated or as simple as you liked. The simplest form was as follows:</p>
<pre>[autorun]
icon=mypic.ico
open=start-zim.bat
action=Click “OK” to start your apps!
</pre>
<p>All you would need is the icon image and the batch job available, and the moment you inserted your USB stick into a computer running an OS like Windows XP, you would see the following options automatically pop up.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/yourapps1.png?323f2c" alt="auto launch usb app" width="343" height="365" /></p>
<p>Just click OK and you&#8217;re good to go. You can launch a batch job that starts all of the apps that you want, and you essentially have a customized way to open up all of your apps in an automated way that saves a lot of time.</p>
<p>This was somewhat limiting, because you had that pop-up prompt. I&#8217;ve heard that there were ways to get around the pop-up that involved a little bit of tweaking/hacking, but in doing so you introduce the ability to hack any computer with some virus simply by inserting a USB stick. Microsoft caught on to this in Windows 7 and completely disabled the USB functionality of autorun.inf in that operating system. Future updates of Windows XP also disabled that feature. So what&#8217;s a system admin to do?</p>
<h2>Launching Apps Automatically From Your USB Stick</h2>
<p>Well, where there&#8217;s a will there&#8217;s a way. And yes, there <em>is</em> a way to launch a program just by inserting your USB stick into a Windows 7 PC.</p>
<p>The first thing you&#8217;re going to want to do is install <a href="http://www.makeuseof.com/tag/how-to-automate-mundane-tasks-with-autoit/">AutoIT</a>, which Guy covered a while back. AutoIT is a very cool scripting language that lets you compile those scripts into exec programs that you can distribute to any PC. The download includes an editor as well as the converter software.</p>
<p>The great thing about AutoIT scripts is that there are lots of brilliant people out there creating scripts for a long list of tasks. The following script is what you use to detect whether a USB stick has been inserted into a port.</p>
<pre>$DBT_DEVICEARRIVAL = "0x00008000"</pre>
<pre> $WM_DEVICECHANGE = 0x0219</pre>
<pre> GUICreate("")</pre>
<pre> GUIRegisterMsg($WM_DEVICECHANGE , "MyFunc")</pre>
<pre> Func MyFunc($hWndGUI, $MsgID, $WParam, $LParam)</pre>
<pre> If $WParam == $DBT_DEVICEARRIVAL Then</pre>
<pre>MsgBox(4096, "Info", "My Drive has been Inserted, Backup My Files!")</pre>
<pre> EndIf</pre>
<pre> EndFunc</pre>
<pre> While 1</pre>
<pre> $GuiMsg = GUIGetMsg()</pre>
<pre> WEnd</pre>
<p>That script will recognize a &#8220;device change&#8221;, and for a USB stick it will launch a message box, as shown here.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/autostart2.png?323f2c" alt="auto launch usb" width="291" height="144" /></p>
<p>Now, think about that. If this script will recognize a USB stick in order to launch a message, then it can be slightly modified to launch a program instead. So, in order to do this, I took the script above and replaced the MsgBox command with the following line:</p>
<pre>Run ("F:\System\Apps\ZimWiki\Zim Desktop Wiki\start-zim.cmd")</pre>
<p>What this does is senses when I&#8217;ve plugged in my USB stick, and then automatically launches the Zim Wiki app I have on my USB stick that I use to organize and monitor my writing work.</p>
<p><img class="aligncenter" style="border: 1px solid black;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/autostart3.png?323f2c" alt="auto launch usb" width="567" height="519" /></p>
<p>Now we have a way to auto-launch a program just by inserting the USB stick. However, let&#8217;s take it a step further and launch a whole collection of apps by launching a batch job on your USB card called <em>startapps.bat</em> that launches all the programs you want for that particular stick.</p>
<pre>START "" F:\System\Apps\ZimWiki\Zim_Desktop_Wiki\start-zim.cmd</pre>
<pre>START "" C:\Users\Owner\MUO_STORY_IDEAS\MUO_STORY_IDEAS.txt</pre>
<pre>START "" FIREFOX.EXE http://www.makeuseof.com/wp-admin</pre>
<p>What&#8217;s the point of this? The point is that now you can have a unique &#8220;<em>startapps.bat</em>&#8221; script for various USB sticks. One might be for your school work, in which case you&#8217;d open your class webpage, a word processor and maybe a spreadsheet for the class. Another might be for your work as a help desk tech, where it would auto-launch PC support utilities and your favorite tech website (MUO of course).</p>
<p>The only catch is this &#8211; the EXE file you create with the AutoIT script has to be running on every PC that you want the auto-launch to occur on. This satisfies the Windows 7 security demands. Just open the AutoIT script above, and compile and build the script to create your EXE file. Put that EXE in the Startup folder of the computers you use most often.</p>
<p>If the script is running, you&#8217;ll see the following Icon in the task bar.</p>
<p><img class="aligncenter" style="border: 1px solid black;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/09/autolaunch4.png?323f2c" alt="auto launch usb app" width="301" height="110" /></p>
<p>This setup is great because there&#8217;s no prompt at all &#8211; just insert your USB stick and all of your required apps will just launch automatically.</p>
<p>Give the script a try and see if you can get this setup working with your own USB stick. Do you like this approach? Any tips for how to improve it? Share your insight in the comments section below.</p>
<p><small><a href="http://www.sxc.hu/photo/845473" rel="nofollow">ramasamy chidambaram</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/autolaunch-apps-usb-stick-windows/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>How To Prevent A USB Drive From Running Anything Automatically In Windows</title>
		<link>http://www.makeuseof.com/tag/how-to-prevent-a-usb-drive-from-running-anything-automatically-in-windows/</link>
		<comments>http://www.makeuseof.com/tag/how-to-prevent-a-usb-drive-from-running-anything-automatically-in-windows/#comments</comments>
		<pubDate>Fri, 29 May 2009 15:00:04 +0000</pubDate>
		<dc:creator>Saikat Basu</dc:creator>
				<category><![CDATA[Cool Windows Apps & Tricks]]></category>
		<category><![CDATA[How-To Articles]]></category>
		<category><![CDATA[autorun]]></category>
		<category><![CDATA[registry]]></category>
		<category><![CDATA[tweaks]]></category>
		<category><![CDATA[USB]]></category>
		<category><![CDATA[usb drives]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=18005</guid>
		<description><![CDATA[USB flash drives are our personal data carriers, but the way we use it to exchange files also makes them open to viruses. The Achilles heel which viruses exploit is the autorun.inf file. Autorun.inf file is a simple instruction file present in removable media like CDs, DVDs and USB drives. This file contains a series [...]]]></description>
			<content:encoded><![CDATA[<p><img class="size-full wp-image-18011 alignleft" style="margin-left: 5px; margin-right: 5px;" title="thumbnail" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/05/thumbnail.png?323f2c" alt="thumbnail" width="160" height="139" />USB flash drives are our personal data carriers, but the way we use it to exchange files also makes them open to viruses.</p>
<p>The Achilles heel which viruses exploit is the <strong>autorun.inf</strong> file. Autorun.inf file is a simple instruction file present in removable media like CDs, DVDs and USB drives. This file contains a series of commands that triggers the operating system to start an executable, tells it which icon to use, and which additional actions to make available. A basic autorun.inf file looks like this &#8220;“</p>
<p><em>[autorun]<br />
open=autorun.exe<br />
icon=autorun.ico</em></p>
<p><strong>Special Note:</strong> <em>Autoplay</em> is the Windows action which asks you to specify the application to use to open a particular file. The autoplay dialog box asks you to select from the options when you insert a media. <em>Autorun</em> on the other hand, is the Windows action which automatically launches applications depending on the commands given in the autorun.inf file when we double click the removable drive icon.<br />
<span id="more-18005"></span></p>
<p>The keyword is <strong>automatic</strong>. We have to find ways to short circuit the automatic execution of programs (good or bad), so that a hidden malware does not penetrate our system. The idea then is to change the way Windows handles the autorun.inf file. The methods expressed here are majorly for <strong>Windows XP</strong>.</p>
<h3>Use the SHIFT key</h3>
<p>Suppress autorun by pressing the SHIFT key when inserting a USB drive. Then, right click on the icon in <em>Explorer</em> and select <em>Explore</em> to access the contents of the drive. This is a one-time action and you have to keep that in mind every time you insert an USB drive. And you have to be ever mindful of never double-clicking your USB drive icon in Explorer.</p>
<h3>Go to the Group Policy Editor</h3>
<p><img class="aligncenter size-full wp-image-18006" title="1_gpedit" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/05/1_gpedit.png?323f2c" alt="1_gpedit" width="580" height="522" /></p>
<p>Group Policy Editor is used to define user and computer configurations for groups of users and computers.</p>
<ol>
<li>Open GPEditor via <em>Start &#8220;“ Run</em>. Enter <em>gpedit.msc</em> in the Run box.</li>
<li>Navigate to <em>Computer Configuration &#8211; Administrative Templates &#8220;“ System</em>.</li>
<li>Highlight <em>System</em> on the left hand pane. On the right hand pane, go down to the entry &#8211; <em>Turn off Autoplay</em> and double click on it.</li>
<li>Select the <em>Enabled</em> radio button, then for the <em>Turn off Autoplay</em> on dropdown, select <em>All drives</em>.<img class="aligncenter size-full wp-image-18007" title="2_turn-off-autoplay" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/05/2_turn-off-autoplay.png?323f2c" alt="2_turn-off-autoplay" width="404" height="455" /></li>
</ol>
<p>This will disable the autorun feature and let you explore the drive contents for all drives instead of directly opening it.</p>
<h3>Hack the registry </h3>
<p><img class="aligncenter size-full wp-image-18008" title="3_registry" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/05/3_registry.png?323f2c" alt="3_registry" width="550" height="498" /></p>
<p>We can also disable the autorun feature by making a change in the registry. Be forewarned that if you are not at ease with the registry, it is advisable to skip this step.</p>
<ol>
<li>Launch the Registry Editor by typing regedit in the Run box (Start -> Run)</li>
<li>On the left hand pane, keep expanding the entries by clicking on the + sign. Search for this entry &#8220;“<em> HKEY_CURRENT_USERSoftwareMicrosoftWindowsCurrentVersionPoliciesExplorer<br />
</em></li>
<li>For this registry entry, go to the right panel and double click the <em>NoDriveTypeAutoRun</em> registry key.</li>
<li>Change the Value data to <strong>FF</strong> for Hexadecimal or <strong>255 </strong>for Decimal value.</li>
<li>Click <em>OK</em> to close the registry editor and restart the computer.</li>
</ol>
<h3>Fall back on software</h3>
<p>If you are the type who hates going into the guts of the operating system, there are of course handy pieces of software available. Here are two examples of such applications.</p>
<p><a href="http://narod.yandex.ru/100.xhtml?www.sputnik70.narod.ru/usb_en.zip" target="_blank"><strong>USB 1.3</strong></a></p>
<p><img class="aligncenter size-full wp-image-18009" title="4_usb" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/05/4_usb.png?323f2c" alt="4_usb" width="326" height="125" /></p>
<p>This 7KB USB anti-virus tool works by detecting the removable drive and renaming the autorun.inf file to <em>autorun.inf_current date_time</em> thus preventing its running by the system. The program loads in the system tray and with just one click, you can turn Autorun on or off. Another option informs the user about all actions on autorun.inf files.</p>
<p>The program works from the system tray and is compatible with Windows XP, Windows 2000, Windows 98 and Windows 95.</p>
<p><a href="http://www.microsoft.com/windowsxp/downloads/powertoys/xppowertoys.mspx" target="_blank"><strong>TweakUI</strong></a></p>
<p><img class="aligncenter size-full wp-image-18010" title="5_tweakui" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/05/5_tweakui.png?323f2c" alt="5_tweakui" width="524" height="423" /></p>
<p>TweakUI, Microsoft&#8217;s <a href="http://www.makeuseof.com/tag/microsoft-powertoys-winxp/" target="_blank">Power toy for Windows XP</a> gives a user access to system settings that are below the visible interface of the OS.</p>
<p>To disable autoplay using TweakUI, go to the <em>My Computer &#8220;“ Autoplay &#8220;“ Drives</em> setting. Deselect the drive you wish to disable the autoplay for. Also, go to<em> My Computer &#8211; AutoPlay &#8220;“ Types</em>. Uncheck <em>Enable Autoplay</em> for removable drives. Click <em>OK</em> and you are done.</p>
<p>The 126KB download is compatible with Windows XP and Windows Server 2003.</p>
<p>These methods will prevent the automatic jumpstart of a USB drive. But if a malware sneaks through, then the value of a good, updated <a href="http://www.makeuseof.com/tag/panda-cloud-the-antivirus-like-no-other-you-have-seen/">anti-virus</a> and anti-malware as the first line of defense cannot be exaggerated enough.</p>
<p>Do you let a USB drive run automatically or do you control it with a blocking action? Which is your favored method? Let us know.</p>
<p>While we are learning more about USB drives, also take a look some of our <a href="http://www.makeuseof.com/tags/usb-drive/" target="_blank">popular posts</a> about the device.</p>
<p><small>Image credit: <a href="http://www.flickr.com/photos/76613417@N00/111901487/">Nedko</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/how-to-prevent-a-usb-drive-from-running-anything-automatically-in-windows/feed/</wfw:commentRss>
		<slash:comments>28</slash:comments>
		</item>
		<item>
		<title>5 Awesome Apps To Make Things Easier On A USB Drive</title>
		<link>http://www.makeuseof.com/tag/5-awesome-apps-to-make-things-easier-on-a-usb-drive/</link>
		<comments>http://www.makeuseof.com/tag/5-awesome-apps-to-make-things-easier-on-a-usb-drive/#comments</comments>
		<pubDate>Tue, 10 Jun 2008 13:49:43 +0000</pubDate>
		<dc:creator>Shankar Ganesh</dc:creator>
				<category><![CDATA[Cool Software Apps]]></category>
		<category><![CDATA[MakeUseOf Lists]]></category>
		<category><![CDATA[anti-virus]]></category>
		<category><![CDATA[autorun]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[portable app]]></category>
		<category><![CDATA[synchronize]]></category>
		<category><![CDATA[USB]]></category>
		<category><![CDATA[usb drives]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=2805</guid>
		<description><![CDATA[We all love our USB drives, don&#8217;t we? You should probably be using some portable apps on your USB drive &#8220;“ if not, check out our huge list of portable applications for your USB drive here. In this post, I want to cover a few apps that will make managing your USB drive easier. In [...]]]></description>
			<content:encoded><![CDATA[<p><img class="alignnone size-full wp-image-2878" title="usb1" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/06/usb1.png?323f2c" alt="" align="left" />We all love our USB drives, don&#8217;t we? You should probably be using some portable apps on your USB drive &#8220;“ if not, check out our <a href="http://www.makeuseof.com/tag/portable-software-usb/">huge list of portable applications for your USB drive here</a>.</p>
<p>In this post, I want to cover a few apps that will make managing your USB drive easier. In essence, I&#8217;ll talk about tools that can be used to make things easier if you&#8217;ve got a USB drive &#8220;“ <em>not about apps that work from your drive.</em></p>
<p>So here we go &#8211; five applications to make things easier if you&#8217;re using a USB thumb drive.</p>
<h2>1) Prevent Virus Infections on your USB Thumb Drive with ThumbScrew</h2>
<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/06/thumbscrew1_thumb.png?323f2c" border="0" alt="thumbscrew1" align="left" />If you&#8217;re working on a system that&#8217;s probably infected with viruses, you wouldn&#8217;t want to see your USB thumb drive get infected by the same &#8220;“ they probably have some backups of your data that you cannot afford to lose. However, if you&#8217;re in an inevitable situation where you really have to access the USB drive, do so <strong>after</strong> you install ThumbScrew.</p>
<p><a href="http://www.irongeek.com/i.php?page=security/thumbscrew-software-usb-write-blocker">ThumbScrew</a> can be used to write-protect your USB drive so that malware from your computer doesn&#8217;t spread to it. <a href="http://www.irongeek.com/i.php?page=security/thumbscrew-software-usb-write-blocker">Download</a> and launch the app, right click the System Tray icon and choose &#8220;˜<strong>Make USB Read Only&#8217;. </strong>Nothing could be written to the USB Drive, you&#8217;re completely protected from infections spreading to your disk from your computer.</p>
<h2>2) Eject USB Devices Quickly with USB Disk Eject</h2>
<p><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" title="usbdiskeject" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/06/usbdiskeject.gif?323f2c" border="0" alt="usbdiskeject" align="left" />Let&#8217;s admit it. Windows does give you options to eject your USB drives &#8220;“ we all use that by clicking on the &#8220;˜Safely Remove Hardware&#8217; option in the System Tray. But have you ever thought it&#8217;s too cumbersome and the list confuses you more than helps you remove that <em>particular</em> device?</p>
<p>People who&#8217;ve got multiple USB Devices connected to their system will have really felt this annoyance as the hardware remove dialog doesn&#8217;t make it clear which option removes what device.</p>
<p>Here&#8217;s the way out: <a href="http://quick.mixnmojo.com/usb-disk-ejector">Download</a> this tiny but functional app called <a href="http://quick.mixnmojo.com/usb-disk-ejector">USB Disk Eject</a>. Just double-click when you need to remove a USB drive and a window will pop up listing the devices connected to your system via USB.  Each device is labelled clearly and legibly. Just double-click on the one that you want to get removed and you&#8217;re done. Much quicker, I&#8217;d say.</p>
<h2>3) Access USB Drives Quickly with Desk Drive</h2>
<p>DeskDrive is somewhat similar to the above application, but it&#8217;s for keyboard junkies. Mark just mentioned it a few days ago here on Make Use Of. I&#8217;ve been using it since yesterday, and I couldn&#8217;t help thinking why Windows doesn&#8217;t have this feature by default.</p>
<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/05/deskdriveconfig.gif?323f2c" alt="" /></p>
<p>Here&#8217;s a summary of the app: DeskDrive puts shortcuts to your USB drives on your desktop immediately after you insert them. Quick access. That&#8217;s pretty much it. For more, head on to <a href="http://www.makeuseof.com/tag/instant-removable-drive-shortcuts-with-desk-drive/">Mark&#8217;s post</a> or download the app directly from <a href="http://blueonionsoftware.com/deskdrive.aspx">here</a>.</p>
<h2>4) Autorun Apps from your USB Drive with USB Autorun Maker</h2>
<p>How many times have you browsed through those myriad of folders to launch that one particular app that you always run from your USB drive? Why not make it autorun so that the application launches immediately when you open the drive icon?</p>
<p><img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" title="autoru8n" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/06/autoru8n_thumb.png?323f2c" border="0" alt="autoru8n" width="589" height="363" /></p>
<p>Yep, that&#8217;s possible, thanks to a utility called USB Autorun. Download <a href="http://www.archidune.com/index.php?id=3&amp;d=apo/usb_autorun/setup.exe">USB Autorun</a> (direct link), and use the options in the system tray icon to build an <strong>autorun.inf</strong> file. You&#8217;ll have to specify which app should be run automatically, and click &#8220;˜Build&#8217; and the autorun maker will create an autorun.inf file that tells Windows that a particular app should be launched. No big thing to do here &#8220;“ you just need to specify the path where the app is present. Please note that this software is shareware, so there are some limitations.</p>
<h2>5) Backup Files to your USB Drive with SyncToy</h2>
<p>How many times have you copy-pasted those folders in Windows to back up your most important data and got fed up copy-pasting back and forth? Just relax, and get the SyncToy tool from Microsoft.</p>
<p><img src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2008/02/synctoy1.png?323f2c" alt="" /></p>
<p>Install the <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=C26EFA36-98E0-4EE9-A7C5-98D0592D8C52&amp;displaylang=en">Synctoy application</a>, specify what directory should be copied to where &#8220;“ it&#8217;s called a &#8220;˜folder pair&#8217; in Synctoy (here in this case, the directory where your files should be put in should be somewhere in your USB Drive) and then just press the Run button for the backup operation to take place. For an in depth guide, check out our previous guide on <a href="http://www.makeuseof.com/tag/how-to-sync-files-between-pc-and-usb-thumb-drive/">syncing your USB Drive</a>. I bet this software will probably save you from a lot of frustration. <img src="http://main.makeuseoflimited.netdna-cdn.com/wp-includes/images/smilies/icon_wink.gif?323f2c" alt=';)' class='wp-smiley' /> </p>
<p>What other apps have made working with your USB devices easier? Let us know in the comments. I&#8217;m all ears!</p>
<p><em>(By) Shankar Ganesh, a 16 year old Blogger and Freelance Writer from India. He blogs about computers and software tips at <a href="http://www.killertechtips.com" target="_blank">Killer Tech Tips</a>.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/5-awesome-apps-to-make-things-easier-on-a-usb-drive/feed/</wfw:commentRss>
		<slash:comments>30</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached (Requested URI is rejected)
Database Caching 1/16 queries in 0.017 seconds using apc
Object Caching 375/406 objects using disk: basic
Content Delivery Network via main.makeuseoflimited.netdna-cdn.com

Served from: www.makeuseof.com @ 2012-02-10 14:52:26 -->
