Ich würde Robocopy verwenden, auf diese Weise können Sie sichern, was Sie möchten, und es werden nur die Dateien gesichert, die sich ändern.
Syntax
robocopy \\<Source> \\<Destination>
Z.B
Öffnen Sie den Editor und geben Sie ihn ein (unter Verwendung der richtigen Ordnernamen).
robocopy \\SourceServer\Share \\DestinationServer\My new folder\BackUps
und speichern Sie es als BackUp.bat (beachten Sie die .bat)
Stellen Sie dann diese Datei so ein, dass sie über TaskScheduler (in Ihrer Systemsteuerung) so oft ausgeführt wird, wie Sie möchten.
Außerdem gibt es eine Option zur Dateisynchronisierung - http://improve.dk/simple-file-synchronization-using-robocopy/.
robocopy \\SourceServer\Share \\DestinationServer\Share /MIR /FFT /Z /XA:H /W:5
Parameter, an denen Sie interessiert sein könnten (über den oben genannten Link)
/MIR specifies that robocopy should mirror the source directory and the destination directory. Beware that this may delete files at the destination. /FFT uses fat file timing instead of NTFS. This means the granularity is a bit less precise. For across-network share operations this seems to be much more reliable - just don’t rely on the file timings to be completely precise to the second. /Z ensures robocopy can resume the transfer of a large file in mid-file instead of restarting. /XA:H makes robocopy ignore hidden files, usually these will be system files that we’re not interested in. /W:5 reduces the wait time between failures to 5 seconds instead of the 30 second default.