Sorry if my question is too easy for all of you, but I don't have any ideas on it.
I'm trying to copy some files at logon from a server's share to local drive
Code:
 COPY "\\server\share\grp\element\*.*" "%TEMP%\Startmenu\Programme\*.*" /s 


this one always returns ERROR 3 (Path not found)

if I do it with the shell command like this it works
Code:
SHELL "cmd /c xcopy \\server\share\grp\element\*.* %TEMP%\Startmenu\Programme\*.* /s"  



the one with the copy command also works on a windows server 2003 when a user logs on via terminal services, but when a user logs on locally to a w2k pro it fails.

any ideas?`

Thanks sascha