—–Robocopy
//Only copy the differences
robocopy C:\Copy1\ C:\Users\Administrator\Desktop\Copy2 /e
//copy only the differences and list the modifications
robocopy C:\Copy1\ C:\Users\Administrator\Desktop\Copy2 /e /l
//copy files and keep owner and ACL’s
robocopy C:\Copy1\ C:\Users\Administrator\Desktop\Copy2 /e /copy:DATSO
//Copy files with the ability to resume if the copy gets stuck
robocopy C:\Copy1\ C:\Users\Administrator\Desktop\Copy2 /e /z
//Log Robocopy
robocopy C:\Copy1\ C:\Users\Administrator\Desktop\Copy2 /e /log:c:\it\logs.txt
//Multithread; default 8 threads
robocopy c:\source \\srv-vm2\share /z /e /mt:32