Introduction: Watch Your Back-up!

Quick question for anyone who uses a computer out there: How many of you backup your files as often as you should?
Now everyone who said they do . . . stop lying.

Second question: How many computers do you work on. I personally find myself bouncing between four: home, office, and two computers at a church I volunteer at. Now my solution for my mobility has been like many, portable hard drive, (or 'jump drive' I call it). Now this has worked great but at it basically becomes my primary drive, but as mobile as I obvioulsy am, do you think I have time to think about backing up my files? Well after physically loosing my first drive, my second drive dying, and loosing my senior project twice because of it I came up with a solution.

Well, just a few minutes and two Notepad text files solved my problems. Now yes, you can buy a fancy MS or other professionally designed program to do this, but why when you don't have to?

Step 1: File 1 - Backup

Write notepad file and copy as shown, make sure you change the C:\ to the location you want your files backed up at.

@echo off
echo -------------------
echo Removable Device Automatic Backup
echo -------------------
xcopy "*" "C:\-insert file path here-" /Y /E /R /D
echo Backup Complete!
Pause.

Save as'Backup.bat'

Step 2: File 2 - Write the Autorun

Write notepad file and copy as shown:

[autorun]
action=Backup
open=backup.bat
label=Backup
includeRuntimeComponents=True

Save as autorun.inf

Save both of these files on your own jump drive.

Step 3: The Result:

Every time you plug your drive in you should see the following menu.

Just hit OK and your jump drive files are copied to your computer’s hard drive. The first time everything will be copied, thereafter old files modified or new one added will be what is copied.

It may be simple but if you can reduce backups to one keystroke every time you plug in your jump drive at home, it’s made my day.