Hello,
Intenet friends & software seeker & IT Professional.
copy the content and paste in notepad and save as backup.bat and save type as select all files
@echo off
:: variables
set drive=E:\Nath Backup
set backupcmd=xcopy /s /c /d /e /h /i /r /y
echo ### Backing up My Documents...
%backupcmd% "%USERPROFILE%\Documents" "%drive%\Documents"
echo ### Backing up My Desktop...
%backupcmd% "%USERPROFILE%\Desktop" "%drive%\Desktop"
echo ### Backing up My Music...
%backupcmd% "%USERPROFILE%\Music" "%drive%\Music"
echo ### Backing up My Pictures...
%backupcmd% "%USERPROFILE%\Pictures" "%drive%\Pictures"
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