5 lines
155 B
PowerShell
5 lines
155 B
PowerShell
$source = "C:\source_folder"
|
|
$destination = "D:\destination_folder"
|
|
$logFile = "C:\robocopy.log"
|
|
|
|
Robocopy.exe $source $destination /E /V /NP /LOG:$logFile |