Also for the computer geeks here, I use my own .BAT scripts to do backups to my other hard drives. I don't like re-copying an entire music directory or drive from one to another, it takes too long. I use xcopy commands that just look for changes to the files in the directories and it only copies those over to the backup.

To create your own, simply copy and paste the text between the lines into Notepad and name it YourFile.bat. Of course you'll need to change the directories to make it relevant to your PC. To find out what the commands mean, type xcopy /? in a command prompt window and you can also run each line of the file in a command window.

----------------------------------------------------------------------------------
D:
cd "\ADataFolders\Documents"
xcopy *.* "F:\Documents" /y /r /e /d

pause

----------------------------------------------------------------------------------

The D: command is there since the window usually opens to a C:\ drive folder. If your source is the C: drive, just use C:. So the F:\ is my external drive and I'm copying everything from the folders I 'cd' into. The *.* after xcopy means to copy everything that's in the 'cd' command. Once those files are copied to F:\, the next time I run this .BAT file, it will only copy the files that have changed. The one thing this doesn't do however is remove old files if you delete or rename them on the source drive. The pause command simply holds the command prompt window open for you to see the summary of the copy process. It will display "Press any key to continue". So after you read the files copied, hitting enter will close the window.

If you have more than one folder you want to copy, simply repeat the 'cd' and 'xcopy' lines in your .bat file for each extra copy process you want to add.

For anyone that wants to mess with this on their own PCs, feel free to ask me any questions if you need help.




Steve

BIAB/RB 2022, Pro Tools 2020, Korg N5, JBL LSR 4328 Powered Monitors, AKG/Shure Mics.
PC: Win11 PRO, 4 TB M2 SSD, 2 TB HD, 128 GB Memory