I want to copy files to users 'C' drive when they login. The directory that I am copying to may not exist initially. My understanding from the documentation is that as long as I specify the target with a trailing backslash the directory will be created if it does not exist. This is not working. The test code is:
IF @WKSTA="nyoscibeljxp"
copy "\\homeclaims\source\link_2002.mde" "c:\access frontend\"
copy "\\homeclaims\source\LOC Database.lnk" "c:\Documents and Settings\" + @userid + "\Desktop\*.*"
ENDIF

The "access frontend" directory is not being created.
Can anyone help?
Thanks in advance