• We’re currently investigating an issue related to the forum theme and styling that is impacting page layout and visual formatting. The problem has been identified, and we are actively working on a resolution. There is no impact to user data or functionality, this is strictly a front-end display issue. We’ll post an update once the fix has been deployed. Thanks for your patience while we get this sorted.

Software that will back up one drive to another?

zixxer

Diamond Member
Is there a program that will back up one drive to another? I use a secondary drive for my documents and etc, and I'd like to back it up to yet another drive every night...


Thanks!
 
On WinXP Pro, you can use the built-in Backup feature (Start > All Programs > Accessories > System Tools > Backup). On WinXP Home, you could make a batchfile and schedule it to run at a certain time using your Admin account's credentials (it must have a password in order to be able to schedule a task, however).

If you want to do the batchfile, something like this should work:

xcopy "C:\documents and settings\user\my documents" "F:\backup" /y /e /c /i

And if you have the disk capacity, you may want to make a Monday.bat, Wednesday.bat, Friday.bat, Sunday.bat, give them each their own once-a-week schedule, and have them back up to separate folders so you can "go back in time" to various points, not just the last backup that ran. Ditto for using Microsoft Backup on XP Pro, you can set up multiple backup jobs.
 
I wrote a simple shell script to use rsync on Cygwin to backup all the stuff I choose.. too bad the cron job just won't work 😕
 
Back
Top