robocopy "D:\SOURCE" "\\10.20.30.40\F$\DESTINY" /E /ZB /SEC /COPYALL /R:3 /W:3 /V /ETA /TEE /MT:16 /XD "D:\SOURCE\EXCLUDE"
/E — Copy Subdirectories, including empty ones.
/ZB — Uses restartable mode. If access is denied, use backup mode.
/R:3 — Retry 3 times (you can specify a different number, default is 1 million).
/W:3 — Wait 3 seconds before retrying (you can specify a different number, the default is 30 seconds).
/V — Produce verbose output, showing skipped files.
/COPYALL — copy all file information.
/SEC — copy security information.
/TEE — open console.
/MT:16 — Do multi-threaded copies with n threads (default is 8, max 128).
/XD - exclude folder.