Link to home
Start Free TrialLog in
Avatar of ahmad1467
ahmad1467Flag for United States of America

asked on

Robocopy Backups

have a user that has a Windows XP Pro PC.
On this PC I would like to give him the ability to create manual weekly l backups backup.
He has multiple directories that he would need to backup; I have a USB hard drive to hold his backups.
I was thinking of using Robocopy to do this my plan is to create weekly .bat files that he could click on to copy his files each week to the drive and then at the end of the month run a bat file to copy the weeks backup to a monthly folder.
Does this seem like a good ideal?

Thanks
Avatar of pschakravarthi
pschakravarthi

Yes.  But consider use of Windows NT Backup.
Consider 5 bat files for the weekdays run by windows scheduler or run by the user for version backups.
Avatar of ahmad1467

ASKER

I thought about NT backup but the user would probably have problems restoring the files
And if I scheduled the backup he would probably shutdown before the backup window
If it is the case your option is good.  
FYI,  you can call NT backup from Batch fiile also.  
ASKER CERTIFIED SOLUTION
Avatar of SysExpert
SysExpert
Flag of Israel image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Do you know how I would I backup multiple directories Example
RoboCopy /Mir C:\MYMAIL G:\Backup\MYMAIL
RoboCopy /Mir C:\Documents and Settings\ahmad\My Documents\Company G:\Backup\Company

Thanks