Using a batch file, suppose a directory on a network machine, mapped to a drive with net use.
net use \\"server name"\"share name" y:
Then from that directory
y:
cd archive
An xcopy to another location on that drive.
xcopy *.* backup\
What behaviour would xcopy take? Would a temporary copy of *.* be sent to the host machine (the one on which the batch is started) only to be sent back to the destination directory, or would the copy be effected solely on the network drive?