2

I'm using robocopy on a Windows Server 2008 R2 SP2 machine with the following options:

robocopy W:\ E:\old_files\daten1\ /R:1 /W:1 /MIR /COPYALL /ZB /DCOPY:T /MT 50 /LOG:E:\old_files\copy_w.txt

robocopy copies all of the folders, but at the destination they appear empty without the files. I cannot find any errors in the log file. Security permissions are OK.

Skyhawk
  • 14,149
  • 3
  • 52
  • 95
joe
  • 55
  • 2
  • 5
  • Suggest trying repeatedly dropping one option at a time until you get the files copied. This will give you the option that is causing the problem, then build back up. – Richard Sep 05 '12 at 08:34

1 Answers1

5

If that is the command line you're using then your problem is most likely the /MT 50. I suspect you meant /MT:50 to have 50 threads rather than files called 50.

user9517
  • 114,104
  • 20
  • 206
  • 289