So it did happened to me not long ago, so I made a very simple ".bat" file that will do the backup of only the modified files (or new files) from a few directories every time I turn off my computer.
...and the good thing are...
-You are going to back up only the data that has been modified. (not need to copy files that you already have in the backup USB pen drive )
-You'll do it when turning off the computer.(you don't mind if it take a bit longer because after it's done, it'll turf off the computer for you)
Remove these ads by
Signing UpStep 1: What to backup
Lets say you're interested in backup the information you have in the Outlook, first thing to do is find in your computer were the Outlook stores that data.
In my computer (i'm using XP) is located in
C:\Documents and Settings\("your account name")\Local Settings\Application data\Microsoft\Outlook\
You can make sure that this is the files location if you open the Outlook then Right click on the root folder (probably Outlook Today), Properties, advanced, then look at the Filename box; this is the location of your files.
Although you don't need to back up all the files form that directory, I rather be on the safe side and do the whole directory.
Any other directory you want to backup? all you need to do is find the location on your computer.







































Visit Our Store »
Go Pro Today »




cool article @newtonn2! I prefer Outlook backup tools which are able to make an Outlook backup automatically! One of these tools is Lookeen Backup Manager (http://www.outlook-backup.com/en). I use it for several days and my conclusion is - fantastic tool!
http://www.speedguide.net/read_articles.php?id=1547
@echo off
:: variables
set drive=G:\Backup
set backupcmd=xcopy /s /c /d /e /h /i /r /y
echo ### Backing up My Documents...
%backupcmd% "%USERPROFILE%\My Documents" "%drive%\My Documents"
echo ### Backing up Favorites...
%backupcmd% "%USERPROFILE%\Favorites" "%drive%\Favorites"
echo ### Backing up email and address book (Outlook Express)...
%backupcmd% "%USERPROFILE%\Application Data\Microsoft\Address Book" "%drive%\Address Book"
%backupcmd% "%USERPROFILE%\Local Settings\Application Data\Identities" "%drive%\Outlook Express"
echo ### Backing up email and contacts (MS Outlook)...
%backupcmd% "%USERPROFILE%\Local Settings\Application Data\Microsoft\Outlook" "%drive%\Outlook"
echo ### Backing up the Registry...
if not exist "%drive%\Registry" mkdir "%drive%\Registry"
if exist "%drive%\Registry\regbackup.reg" del "%drive%\Registry\regbackup.reg"
regedit /e "%drive%\Registry\regbackup.reg"
:: use below syntax to backup other directories...
:: %backupcmd% "...source directory..." "%drive%\...destination dir..."
echo Backup Complete!
@pause