Additional Files
Additional Files
I was thinking about a backup solution that lets you pick specific folders and save them to a certain place, only backing up files that have changed since the last backup. It shouldn’t run automatically; you’d need to trigger it manually since your computer isn’t on all the time.
Here is the revised version of your text:
This is the script for my project. I'm using xcopy with several options to copy files and folders. It includes exclusions, hides certain items, and uses specific flags so Windows recognizes them properly. The attrib command makes them visible, but without those flags they would appear hidden.
You've already configured everything and are beginning your backups. I'm still reviewing the parameters but I'm satisfied with /s /e /d and /h. Your current script:
@ Echo off xcopy k:\Lightroom "e:\Backup files\LightRoom" /s /e /d /h
xcopy k:\Pictures "e:\Backup files\Pictures" /s /e /d /h
xcopy K:\Backups "e:\Backup files\Backups" /s /e /d /h
xcopy k:\Computer "e:\Backup files\Computer" /s /e /d /h
xcopy K:\DAD "e:\Backup files\DAD" /s /e /d /h
xcopy K:\Editing "e:\Backup files\Editing" /s /e /d /h
Proceed.