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