I was able to use a simple batch file to copy files from my XP box up to a network share. The syntax being as follows, within the batch file:
copy "[fully qualified path and source files]" "[fully qualified path and destination files / UNC]"
in my case:
copy "c:\documents and settings\username\desktop\test.lnk" "\\domain\share name\test.lnk"
worked just fine
_______________________________________
this in conjunction with XP's "Scheduled Tasks" (Start >> Programs >> Accessories >> System Tools) should do what you're looking for.
it is important to note that, while XP has the ability to read beyond the old-school "8.3" rule for folder/file names, the quotes are still necessary in order for any spaces to be interpreted correctly
|