From eb7d17a3230d7e9a51390c2ba6647bfe7d8010a8 Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Thu, 21 Dec 2023 23:32:19 -0700 Subject: [PATCH] Update Scripts/Batch/Robocopy.md --- Scripts/Batch/Robocopy.md | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Scripts/Batch/Robocopy.md b/Scripts/Batch/Robocopy.md index 77ab958..f01ffac 100644 --- a/Scripts/Batch/Robocopy.md +++ b/Scripts/Batch/Robocopy.md @@ -7,8 +7,7 @@ An example of using Robocopy is below, with a full breakdown: ``` robocopy "E:\Share" "Z:\Share" /Z /B /R:5 /W:5 /MT:4 /COPYALL /E ``` -- `robocopy` : The application itself -- `"source\folder" "destination\folder"` : Self-Explanatory +- `robocopy "source" "destination"` : The application itself - `/Z` : Network Resume Mode - If the network connection (if using a network share or something) is interrupted, it will resume when the network comes back online `Useful if the network is unstable` - `/B` : Backup Mode - This, in some unique circumstances, can be used to circumvent ACLs on folders and files, just forcing them to copy bypassing permissions - `R:5` : Number of times to retry copying the same file