On Fri, Mar 26, 2010 at 5:39 AM, [email protected]
<[email protected]> wrote:
> " IF NOT EXIST \\127.0.0.1\Sharepointb\New MKDIR \\127.0.0.1\Sharepointb\New

  127.0.0.1 is the local computer (loopback address).  If that's not
just a placeholder, you're probabbly better off just copying on the
local file systems.  For example:

        ROBOCOPY G:\Backups\Sharepoint F:\sharepointb\new

  If 127.0.0.1 is just a placeholder for your "real" network address,
disregard this part.

> ROBOCOPY /B /E /COPYALL /COPY:T  G:\Backups\Sharepoint\*.tib
> \\127.0.0.1\Sharepointb\New

> keep gettig this error
> ERROR : Invalid Parameter #5 : "G:\Backups\Sharepoint\*.tib"

  You have the syntax for ROBOCOPY wrong.  Your "source\pattern
destination" usage is wrong.  Instead use "source destination
pattern".  You can specify more than one pattern.

  I recommend consulting the documentation, or at least the command
line help.  You can find a web version of the command line help here:
http://ss64.com/nt/robocopy.html

  Change your specific command to:

ROBOCOPY /B /E /COPYALL /COPY:T  G:\Backups\Sharepoint
\\127.0.0.1\Sharepointb\New *.tib

-- Ben

~ Finally, powerful endpoint security that ISN'T a resource hog! ~
~ <http://www.sunbeltsoftware.com/Business/VIPRE-Enterprise/>  ~

Reply via email to