Computer Problems? Computing.Net has over 1,000,000 posts about all things technology related! Over 90% answered within 24 hours! Click here to start participating now! Also, be sure to check out the New User Guide.
Robocopy syntax ???
Name: James Date: February 23, 2002 at 16:39:00 Pacific
Comment:
Hi, I am trying to copy a large amount of data from one NT4 server to another NT4 server using Robocopy. I am using the following syntax, robocopy \\server1\c:\path \\server2\c:\path
It is not working, the error message states that the source path cannot be found. ???
Name: Pablo Date: February 24, 2002 at 02:36:11 Pacific
Reply:
Try using the UNC address only
\\server1\path \\server2\path
0
Response Number 2
Name: michael Date: February 24, 2002 at 11:41:53 Pacific
Reply:
Path meaning the SHARE name, no disk letter required.
0
Response Number 3
Name: C_A_Braun Date: February 25, 2002 at 09:56:17 Pacific
Reply:
Try robocopy \\server1\c$\dir \\server2\c$\dir I usually add the following switches as well: /mir (Mirrors directory and subdirectory structure) /mov (Moves data rather than just copy) /sec (Copies NTFS permissions as well) /r:1 /w:1 (Retry 1 time after waiting 1 second if a failure occurs) robocopy \\server1\c$\dir \\server2\c$\dir /mir /mov /sec /r:1 /w:1
Summary: Hello I am trying to copy the following directory structure: robocopy Y:/Program Files/Business Objects/Server/WebIntelligence 2.5/Storage/docs/Document/PB6A*.* Z:/docs/Document /s /e /R:1 /W:10 Roboc...
Summary: So ive got this FTP server (IIS4) and yeah it works great, has for a long time. Now i wanna create a new site. IP address is not an option as the server is being mapped by my firewall. So i go in and ...
Summary: Hi All, We are using Robocopy to copy a template folder with its subfolders and NTFS permsissions. The renamed copy and its subfolders are for holding all data relevant to a new project. I am in th...