Sorry... my mistake..

**************************************

$source = "c:\source dir\"
$destination = "c:\destination dir\"

; 1 attempt
;SHELL "%COMSPEC% /e:1024 /c ROBOCOPY.EXE $source $destination /E /r:2 /w:2"

; 2 attempt
;SHELL '%COMSPEC% /e:1024 /c ROBOCOPY.EXE "$source" "$destination" /E /MOVE /r:2 /w:2'

; 3 attempt
;SHELL "%COMSPEC% /e:1024 /c ROBOCOPY.EXE "$source" "$destination" /E /MOVE /r:2 /w:2"

; 4 attempt
SHELL "%COMSPEC% /e:1024 /c ROBOCOPY.EXE '$source' '$destination' /E /MOVE /r:2 /w:2"

**************************************