xcopy and invalid drive specification

I am trying to use xcopy and it always returns with invalid drive specification

xcopy "C:\socp.tar" "\\FMDX1024\C\socp.tar"

FMDX1024 is a machine on the network.

any clue?

2

2 Answers

Maybe:

xcopy "C:\socp.tar" "\\FMDX1024\C$\socp.tar"

C$ is an Administrative share, which must be enabled by undoing Simple File Sharing.

See :
How to enable in Windows XP SP3
How to enable hidden administrative shares on XP Home edition

If I put in a valid path, XCOPY completes successfully for me.

If I purposely put in an invalid path, XCOPY returns, "Invalid drive specification".

So guessing what you think you have, you do not. Either the \\FMDX1024\ or C\ is incorrect (& it need not be "C\", it could be called anything).

C:\TMP>xcopy xxx.txt \\therube\c_drive\tmp\xxx.txt

C:xxx.txt

1 File(s) copied

C:\TMP>xcopy xxx.txt \\therube\c\tmp\xxx.txt

Invalid drive specification

0 File(s) copied

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like