About 357,000 results
Open links in new tab
  1. ROBOCOPY command to do an incremental backup - Super User

    robocopy C:\source M:\destination /MIR /FFT /R:3 /W:10 /Z /NP /NDL Parameters explained. The /MIR option (equivalent to /E /PURGE) stands for "mirror" and is the most important option. It …

  2. how to copy file/folder and preserve their creation date on …

    Oct 22, 2022 · One such free tool is Robocopy, which is a built-in command-line tool in Windows. It has a switch (/DCOPY:T) that allows you to preserve the original timestamps, including …

  3. Robocopy - Copy directory into another directory - Super User

    May 24, 2017 · Use Robocopy (Robust File Copy) robocopy c:\test d:\test /s /e *.* /s switch is for copying all sub directories and /e switch is for copying all the empty sub directories & *.* …

  4. How to use Robocopy to back up all your data in Windows 10: …

    Aug 14, 2019 · Robocopy "C:UsersGreg Shultz" "F:TheBackup" /MIR /XA:SH /XD AppData /XJD /R:5 /W:15 At this point, I am ready to add the multi-threaded switch, which enables Robocopy …

  5. What does Robocopy mean by tweaked, lonely, and extra?

    I found documentation for RoboCopy versions XP010 (Windows XP) and 1.70. If I find documentation for versions XP026 or XP027 (Windows 7), I will link to them here. Edit …

  6. RoboCopy slower than Xcopy? (Windows 10) - Super User

    Feb 12, 2023 · Usually, Robocopy will be the faster alternative in most cases however the most significant difference is that robocopy has a retry option where as xcopy does not retry on …

  7. How can I find robocopy failures in the log? - Super User

    May 26, 2021 · After I use Robocopy to copy a folder, I sometimes get failures in the run log summary at the bottom (please see picture), however, I don’t see how to locate them in the …

  8. robocopy - when does it delete files from destination?

    robocopy /PURGE c:\source d:\destination; robocopy /MIR c:\source d:\destination; Then you will delete files in the destination if they do not exist in the source. Robocopy will also default to …

  9. windows - How do I create a log of robocopy actions and save in a …

    Oct 20, 2015 · You can just call robocopy in PowerShell or batch command file and do your file manipulation and have it create the log, then rename the log file on the next line. The example: …

  10. How to copy ONLY those files that are not in the destination?

    Aug 25, 2012 · Is it possible to use robocopy to copy only the files that do not exist in destination? robocopy has a /is (include same files) switch. What I am looking for is an /xs switch. If a file …