From 46f2babee47292fd0399f3e7d0512d2ba6774137 Mon Sep 17 00:00:00 2001 From: Nicole Rappe Date: Mon, 4 Aug 2025 19:15:11 -0600 Subject: [PATCH] Update Scripts/Batch/Robocopy.md --- Scripts/Batch/Robocopy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Scripts/Batch/Robocopy.md b/Scripts/Batch/Robocopy.md index 373cf02..65094a2 100644 --- a/Scripts/Batch/Robocopy.md +++ b/Scripts/Batch/Robocopy.md @@ -24,5 +24,5 @@ robocopy "E:\Source" "Z:\Destination" /Z /B /R:5 /W:5 /MT:4 /COPYALL /E **This example assumes you are running robocopy from the destination computer**. **Remember**: You are always **PULLING** data with administrative shares, not pushing it, the source should be the administrative share, and the destination should be local (in this example). There are scenarios where you can move data between two network shares, but its best (and cleaner) to always have a remote/local relationship in the transfer. ```powershell - robocopy "\\SERVER\E$\SOURCE" "E:\DESTINATION" /Z /B /R:5 /W:5 /MT:4 /COPYALL /E + robocopy "\\SERVER\E$\SOURCE" "E:\DESTINATION" /Z /B /R:5 /W:5 /MT:4 /COPYALL /E ``` \ No newline at end of file