$robocopyParams = @(
$CONFIG.SourcePath, $CONFIG.DestinationPath
"/MIR", "/XJ", "/R:3", "/W:1", "/MT:8" # Mirror changes, purge orphans, retry thrice on failure, run on 8 threads
"/BYTES", "/NJH", "/NFL", "/NDL", "/NP", "/NC" # Show sizes in bytes, minimize logging
"/TEE", "/UNILOG+:$($CONFIG.LogFile)" # Output to stdout and log file (in utf16)
)
if ($WhatIf) { $robocopyParams += "/L" } # Only list files without performing file operations
robocopy @robocopyParams
Sources:
Related: