Need a way to mirror a drive to a network location

Associate
Joined
10 Jan 2009
Posts
1,853
Hi all. All of my media is stored on my N54L microserver which is great, but I have a SSD scratch drive in my main workstation that holds new images etc that I'm processing.

I currently back up a image of this drive to the server using macrium but it would be better for me if I could just mirror all the files to the server so I can get at them from anywhere.

Looks like sync toy used to do this job but it seems to have been abandoned, are there any other simple ways of doing it?

Cheers :D
 
My bad, looks like Sync toy is still available and working :)

I will give it a whirl, but in the meantime are there any better solutions out there?
 
Scheduled task and then a robocopy batch file e.g.

robocopy S:\\ScratchFolder \\N54L\BackupFolder /MIR /R:0


the /MIR flag will ensure that the backup folder is an exact copy of the scratchfolder i.e. by deleting files that get removed.
 
Back
Top Bottom