<?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>The Infinite Loop - Beginner&#039;s SEO, Beginner C# &#38; JQuery Tutorials &#187; backup</title>
	<atom:link href="http://theinfiniteloopblog.com/tag/backup/feed/" rel="self" type="application/rss+xml" />
	<link>http://theinfiniteloopblog.com</link>
	<description>Problem. Problem Solved. Loop. - The life of a programmer</description>
	<lastBuildDate>Wed, 17 Aug 2011 15:29:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.3</generator>
		<item>
		<title>USB Backup Utility with Batches</title>
		<link>http://theinfiniteloopblog.com/gen/usb-backup-utility-with-batches/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=usb-backup-utility-with-batches</link>
		<comments>http://theinfiniteloopblog.com/gen/usb-backup-utility-with-batches/#comments</comments>
		<pubDate>Thu, 14 May 2009 06:33:18 +0000</pubDate>
		<dc:creator>Scott</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[backup]]></category>
		<category><![CDATA[batch tips]]></category>
		<category><![CDATA[batch tricks]]></category>
		<category><![CDATA[batch utitilities]]></category>
		<category><![CDATA[usb]]></category>
		<category><![CDATA[usb backup utility]]></category>
		<category><![CDATA[utilities]]></category>
		<category><![CDATA[windows tips and tricks]]></category>

		<guid isPermaLink="false">http://scottmoniz.com/programmingBlog/?p=111</guid>
		<description><![CDATA[After my USB got FRIED behind the damn photocopier in the library a couple years ago, I had to re-do my whole Java Assignment AGAIN. I decided to make a little backup utility that would make it a little easier to back up my usb. It will only work if the pen drive is a [...]]]></description>
			<content:encoded><![CDATA[
<!-- ALL ADSENSE ADS DISABLED -->
<p>After my USB got FRIED behind the damn photocopier in the library a couple years ago, I had to re-do my whole Java Assignment AGAIN. I decided to make a little backup utility that would make it a little easier to back up my usb. It will only work if the pen drive is a fixed letter, but its always E: on my computer so thats fine by me. It consists on 2 files placed on the usb, a backup.bat that does the backing up and an autorun.inf which puts the Backup option into the autorun screen. When i plug my USB pen drive, the autorun gives me the option to backup, making an exact copy of my usb at c:/usb</p>
<p>Open notepad and paste this text in.</p>
<p><strong><span style="color: #3366ff;">@echo off<br />
echo                USB BACKUP UTILITY V1.0<br />
echo                    CREATED BY SCOTT<br />
echo ----------------------------------------------------------<br />
echo Starting Backup:<br />
cd \<br />
c:</span></strong></p>
<p><span style="color: #3366ff;"><strong>if exist c:\usb goto exists<br />
mkdir "USB"<br />
goto copy</strong></span></p>
<p><span style="color: #3366ff;"><strong>:exists<br />
rmdir "USB" /s /q<br />
mkdir "USB"</strong></span></p>
<p><span style="color: #3366ff;"><strong>:copy<br />
echo Date&gt;C:\usb\backup.txt<br />
date /t&gt;&gt;C:\usb\backup.txt<br />
echo.&gt;&gt;C:\usb\backup.txt<br />
echo Time&gt;&gt;C:\usb\backup.txt<br />
time /t&gt;&gt;C:\usb\backup.txt<br />
echo -------------------------------------------&gt;&gt;C:\usb\backup.txt</strong></span></p>
<p><span style="color: #3366ff;"><strong>cd \<br />
xcopy E:\* "C:\USB" /y /e /r /v&gt;&gt;C:\usb\backup.txt<br />
echo Backup Complete!<br />
echo.<br />
echo Backup of entire USB at C:/USB<br />
echo Log file placed at C:/USB/backup.txt<br />
echo ----------------------------------------------------------<br />
Pause</strong></span></p>
<p>In the line <strong><span style="color: #3366ff;">xcopy E:\* "C:\USB" /y /e /r /v&gt;&gt;C:\usb\backup.txt, </span></strong>replace E: in this line with your actual drive letter.<br />
<span style="color: #000000;">Save this file as backup.bat making sure that "All Files" is selected from the files drop down box.<br />
</span><strong><span style="color: #3366ff;"><br />
</span></strong></p>
<p><strong></strong><br />
<span style="color: #000000;">Next repeat the same steps, saving this text as autorun.inf</span></p>
<p><span style="color: #3366ff;"><strong>[autorun]<br />
action=Backup<br />
open=backup.bat<br />
label=MyUsbName<br />
includeRuntimeComponents=True</strong></span></p>
<p><span style="color: #000000;">Save both these files on the root of your USB.<br />
The next time you plug your usb in, you will see the autorun option "backup".<br />
By clicking this and hitting ok, a full usb backup will be performed and put in C:/USB<br />
</span></p>
]]></content:encoded>
			<wfw:commentRss>http://theinfiniteloopblog.com/gen/usb-backup-utility-with-batches/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

