Update Scripts/Batch/Robocopy.md
This commit is contained in:
@ -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 "E:\Share" "Z:\Share" /Z /B /R:5 /W:5 /MT:4 /COPYALL /E
|
||||||
```
|
```
|
||||||
- `robocopy` : The application itself
|
- `robocopy "source" "destination"` : The application itself
|
||||||
- `"source\folder" "destination\folder"` : Self-Explanatory
|
|
||||||
- `/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`
|
- `/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
|
- `/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
|
- `R:5` : Number of times to retry copying the same file
|
||||||
|
Reference in New Issue
Block a user