Xcopy problem

  • Thread starter Thread starter TonyCzar
  • Start date Start date
T

TonyCzar

When I enter this command into a command prompt:

xcopy \Documents and Settings\Tony\My Documents R:\My Documents /d /v /f

I get the error message: "Insufficient parameters"

I don't see the error. Can anyone?
 
When I enter this command into a command prompt:
xcopy \Documents and Settings\Tony\My Documents R:\My Documents /d /v
/f

I get the error message: "Insufficient parameters"

I don't see the error. Can anyone?

Try adding C: before the \Documents... and use quotes.

xcopy "C: \Documents and Settings\Tony\My Documents" "R:\My Documents"
/d /v /f

HTH
 
Back
Top