Windows - Robocopy File Mirrors and Backups

Using the /MIR switch Copy all files, replacing files in the destination or deleting files in the destination that are not in the source folder. Copy without any permissions. robocopy "\\MySource\Folder" "\\MyDestination\Folder" /MIR /r:1 /w:1 /copy:DAT /xf *.pst Thumbs.db /np /tee /log:c:\roboCopy.log /MIR Mirrors a directory tree (equivalent to /e plus /purge). The /mir option is equivalent to the /e plus /purge options with one small difference in behavior: With the /e plus /purge options, if the destination directory exists, the destination directory security settings are not overwritten. [Read more...]