Skip to content

Instantly share code, notes, and snippets.

@cosoria
Created September 27, 2016 19:42
Show Gist options
  • Save cosoria/b6cc1267949cd3a3d37df47d82895bb1 to your computer and use it in GitHub Desktop.
Save cosoria/b6cc1267949cd3a3d37df47d82895bb1 to your computer and use it in GitHub Desktop.
Synchronize-Directory
function Synchronize-Directory($sourceDir, $destinationDir) {
robocopy $sourceDir $destinationDir /MIR /FFT /Z /XA:H /W:5 /NFL /NDL /NJH /NJS /NC /NS /NP | Out-Null;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment