Sound recording company looking for a way to transfer 2TB audio files over WAN (100 km far away ), the source PCs included: windows 10 and the destination device: included (windows server 2019 ) . we need all the audio files(2TB) to be transferred in one time, then we need any changes or addition happens on the source to be transferred to the destination automatically without the need to transfer the whole file(2TB) again. my colleagues recommended Robocopy but for sorry it is CLI-based, can't run automatically, and can't copy the modified files automatically. I didn't find help in the other communities , please help
If you want the files to synchronise on a schedule, then Robocopy (or rsync) will work just fine. Set up whatever the Windows equivalent of a cron job is to fire off every few hours, job's a good 'un. If you want changes to synchronise automatically and instantly, then you want Syncthing. I use it to keep around 2TB of data synchronised, funnily enough, and it works a treat.
Robocopy will work fine, you'll just need a scheduled task to start it should the machine restart for any reason. You'll need: Code: robocopy source destination /S /MON:1 /XO /MT /S for non-empty subdirectories /MON:1 waits for one change to happen then runs again /XO excludes older files /MT runs as multithreaded to speed it up a bit That should get you going anyway.
Thanks, Gareth Halfacree & noizdaemon666 I already checked the trials versions of Syncthing and tools like GoodSync and Gs Richcopy 360, My question is, How to make Robocopy runs automatically in scheduled tasks every day without needing to run the code manually every time like the mentioned tools with the option of copying the modified audio files only after transferring the whole data(2TB)?
There's no trial version of Syncthing. There's just... Syncthing. It's free and open-source. Install it at both ends, add the directory on the source end, add the directory on the remote end - receive-only, if you don't want to reflect changes back again - and you're done.
This means that the tested version of Syncthing is free and the tested version of GoodSync and Gs Richcopy 360 were a trials! this is good news, I think Syncthing is enough to start thank you