Invalid drive specification using XCOPY

Try mounting your remote drive locally first:

net use x: \\Server_Name\C$

Then try copying the files from X: instead:

xcopy x:\folder_X\folder_Y c:\Users\folder_Z ... 

To unmount:

net use x: /delete

Leave a Comment