From a63aa9ff38e96fe104771aaaed4370fe28a238de Mon Sep 17 00:00:00 2001 From: Bobban Date: Tue, 11 Apr 2023 04:35:07 +0200 Subject: [PATCH] robocopy script --- File/robocopy.ps1 | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 File/robocopy.ps1 diff --git a/File/robocopy.ps1 b/File/robocopy.ps1 new file mode 100644 index 0000000..7498187 --- /dev/null +++ b/File/robocopy.ps1 @@ -0,0 +1,5 @@ +$source = "C:\source_folder" +$destination = "D:\destination_folder" +$logFile = "C:\robocopy.log" + +Robocopy.exe $source $destination /E /V /NP /LOG:$logFile \ No newline at end of file