Skip to content

Instantly share code, notes, and snippets.

@rdapaz
Created May 25, 2021 01:30
Show Gist options
  • Save rdapaz/65bfe25679789f6d2642a973a70a15f8 to your computer and use it in GitHub Desktop.
Save rdapaz/65bfe25679789f6d2642a973a70a15f8 to your computer and use it in GitHub Desktop.
Robocopy Usage to backup folder

Robocopy usage

robocopy <source folder> <destination archive> /e /z /r:1 /w:1

Where:

  • /e recurses
  • /z allows you to restart copy from last time
  • /r:1 retries set to 1
  • /w:1 wait between retries set to 1 second
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment