Hello everyone. I have a file server at home with a 2tb drive filled with movies, music and picture. It's shared with other devices in my network.
What I would like to do is purchase 2 4TB external drives. Only one external drive will be attached to my file server at one time. What I would like to do it to create a batch file that runs from the scheduler, 3am. When the file is executed, it will take the contents of the D: (internal) drive and duplicate everything to the Z: (external). However, once I have a complete initial backup of the D:, I only want new files or recently edited files to be backed up. Every other week, I would like to use the other external drive and swap them and the scheduler runs every morning.
Basically I want a copy on an external drive that I will leave in my car or the office. In case a catastrophe happens. I don't want cloud storage and I don't really want to spend money on a backup software.
Would something like this work?
xcopy "d:\*" "z:\" /y /f /e
What I would like to do is purchase 2 4TB external drives. Only one external drive will be attached to my file server at one time. What I would like to do it to create a batch file that runs from the scheduler, 3am. When the file is executed, it will take the contents of the D: (internal) drive and duplicate everything to the Z: (external). However, once I have a complete initial backup of the D:, I only want new files or recently edited files to be backed up. Every other week, I would like to use the other external drive and swap them and the scheduler runs every morning.
Basically I want a copy on an external drive that I will leave in my car or the office. In case a catastrophe happens. I don't want cloud storage and I don't really want to spend money on a backup software.
Would something like this work?
xcopy "d:\*" "z:\" /y /f /e