les_ligetfalvy,

Thanks for you reply. I gave it a shot and did the following chnages:

OPEN(1, "DeletedUser.csv", 2) ;Deleted User file created by

;DEBUG "ON"
$X = ReadLine(1)
While @Error=0
$Path = Left($X, InStrRev($X,"\"))
$Source = Chr(34) + Left($X, InStrRev($X,"\")) + Chr(34) + " " ;Source Path
$Dest = Chr(34) + "C:\Old" + Right($Path, Len($Path) - 2) + Chr(34) + " " ;Destination Path
$File = Chr(34) + Right($X, Len($X) - Len($Path)) + Chr(34) + " " ;File Name
$Opti = " /Z /MOV"

? $Source
? $Dest
? $File
$ShellCMD = "RoboCopy " + $Source + $Dest + $File + $Opti
? $ShellCMD
Shell "%comspec% /c $ShellCMD"
$X = ReadLine(1)
Loop

Close(1) ;Close Deleted User file

I still got the same results. Any more suggestions?
_________________________
Tom Hagen Jr Power comes from the Mind.