Copy Folder to Remote Computer ROBOCOPY.exe
i need copy folder location c:\scripts remote computer. need copy same location. how can done using robocopy?? help? when try following got error,
robocopy.exe \\ip address here\c:\ \\remote_coputer ip here\c:\ scriptfolder /e / np.
when try above cmd got path specified incorrect , logon failure bad pwd or username. how solve idea??
hi coolguy20,
if woule copy files under of c:\scripts folder, here’s example of robocopy command.
robocopy c:\scripts \\remotecomputername\share /e /sec /r:1 /w:1 /log:c:\robocopylog.txt /tee
i don’t recommend use /copyall paremeter copy owner information remote computer cause problem in future if current owner administrator on current computer or user doesnot exist.
i include log function save logs in c:\robocopy.txt file can check failures afterwards.
the /r , /w retry options, specify retry times 1 , wait time 1 second won’t stuck on retrying default setting retry times 1 million.
for more information on paremeters of robocopy, can type robocopy /? check.
regards,
karen ji
please remember click “mark answer” on post helps you, , click “unmark answer” if marked post not answer question. can beneficial other community members reading thread. ” posting provided "as is" no warranties, , confers no rights.
Windows Server > Management
Comments
Post a Comment