Read my second post more carefully - you still need the MOVE line, but need to change the second part - different destination path instead of a new filename. The MOVE command will RENAME the file if the source and destination PATH is the same, but will MOVE the file if the paths are different.

Seems like all you need to do is a few minor mods:
 Code:
Dim $NewPSTPath    ; instead of $NewPSTName

; define the NewPSTPath instead of NewPSTName
$NewPSTPath = '\\server\share\@USERID'

; Make sure the destination folder exists
MD $NewPSTPath

; adjust the Move command to use the new target path with the original name
Move $PSTPath + $PSTName $NewPSTPath + '\' + $PSTName


Glenn
_________________________
Actually I am a Rocket Scientist! \:D