Welcome guest. Before posting on our computer help forum, you must register. Click here it's easy and free.

Author Topic: Xcopy form network  (Read 2685 times)

0 Members and 1 Guest are viewing this topic.

DaLiMan

  • Guest
Xcopy form network
« on: June 11, 2007, 02:13:49 AM »
I'm trying XCopy from an folder on the network.
Since it is not working I'm wondering this is even possible.   ???

Code: [Select]
xcopy \\Nlf18s01\nlf18$\Test\*.* /a/e C:\Test /y

Dark Blade

  • Forum Gaming Master


  • Adviser

    Thanked: 24
    • Yes
  • Experience: Experienced
  • OS: Windows XP
Re: Xcopy form network
« Reply #1 on: June 11, 2007, 02:20:56 AM »
I'm not exactly sure, but try this:
Code: [Select]
xcopy \\Nlf18s01\nlf18$\Test\*.* C:\Test /a/e/y 

Quote
Copies files and directory trees.

XCOPY source [destination] [/A | /M] [/D[:date]] [/P] [/S [/E]] [/V] [/W]
                           [/C] [/I] [/Q] [/F] [/L] [/G] [/H] [/R] [/T] [/U]
                           [/K] [/N] [/O] [/X] [/Y] [/-Y] [/Z]
                           [/EXCLUDE:file1[+file2][+file3]...]
I think that you need the source, the destination, and then the parameters.