Advertisement
Guest User

Untitled

a guest
Dec 19th, 2014
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.76 KB | None | 0 0
  1. robocopy <source_folder> <destination_folder> <file_mask> /ZB /R:1 /W:5 /TEE /ETA /V /J /MT:24
  2.  
  3. /ZB :: use restartable mode; if access denied use Backup mode.
  4. /R:n :: number of Retries on failed copies: default 1 million.
  5. /W:n :: Wait time between retries: default is 30 seconds.
  6. /TEE :: output to console window, as well as the log file.
  7. /ETA :: show Estimated Time of Arrival of copied files.
  8. /V :: produce Verbose output, showing skipped files.
  9. /J :: copy using unbuffered I/O (recommended for large files).
  10. /MT[:n] :: Do multi-threaded copies with n threads (default 8).
  11. n must be at least 1 and not greater than 128.
  12. This option is incompatible with the /IPG and /EFSRAW options.
  13. Redirect output using /LOG option for better performance.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement