The Computer Oracle

How to speed up robocopy

--------------------------------------------------
Rise to the top 3% as a developer or hire one of them at Toptal: https://topt.al/25cXVn
--------------------------------------------------

Music by Eric Matyas
https://www.soundimage.org
Track title: Magic Ocean Looping

--

Chapters
00:00 How To Speed Up Robocopy
00:37 Accepted Answer Score 15
01:47 Thank you

--

Full question
https://superuser.com/questions/1217180/...

--

Content licensed under CC BY-SA
https://meta.stackexchange.com/help/lice...

--

Tags
#windows #windows7 #performance #speed #robocopy

#avk47



ACCEPTED ANSWER

Score 15


Can I add any options to increase the performance of the robocopy command?

The following options will change the performance of robocopy:

  • /J : Copy using unbuffered I/O (recommended for large files).

  • /NOOFFLOAD : Copy files without using the Windows Copy Offload mechanism.

  • /R:n : Number of Retries on failed copies - default is 1 million.

  • /W:n : Wait time between retries - default is 30 seconds.

  • /REG : Save /R:n and /W:n in the Registry as default settings.

  • /MT[:n] : Multithreaded copying, n = no. of threads to use (1-128)

    default = 8 threads, not compatible with /IPG and /EFSRAW.

    The use of /LOG is recommended for better performance.

Source - robocopy


Further Reading