====== Robocopy ======
==== Mirroring M700t-FS ====
robocopy \\j-m800-fs\e$\User D:\User /E /MT:4 /copy:DATSO /FFT /R:3 /W:0 /XD "DfsrPrivate"
## EXPLANATION ##
# /E - Include Subdirectories, even when empty
# /MT:16 - Multithread. 2-4 mal so viele threads, wie Kerne
# /copy:DATSO - copy Data+Attributs+TimeStamp+NTFS-access-control-list_ACL+Owner information
# /Z - Restartable. Continues copying partially copied files.
# /FFT - gibt 2s leeway on File Dates
# /R:3 - Retries 3, if file is locked
# /W:0 - Wait 0s to retry
# /XD "DfsrPrivate" - Exclude the DfsrPrivate Directory
==== Backing up stuff ====
robocopy d:\ \\j-m700t-fs\backup /MIR /MT:16 /FFT /R:3 /W:0 /copy:DATSO
## EXPLANATION ##
# /MIR - like /E /purge. Deletes Files in Destination, that are not in Source
# /MT:16 - Multithread. 2-4 mal so viele threads, wie Kerne
# /Z - Restartable. Continues copying partially copied files.
# /FFT - gibt 2s leeway on File Dates
# /R:3 - Retries 3, if file is locked
# /W:0 - Wait 0s to retry