robocopy to nas mss

DDKSupport 6 Reputation points
2022-08-29T21:17:29.133+00:00

Windows 10 Pro in workgroup

am trying to run cmd line to move files

Get system error 58 has occurred

what is correct way to also add password for share?

net use r: \192.168.1.111\files /user:192.168.1.111\admin

after have R:, would like to run robocopy to move files from R: to S:

what is roby copy command to move all files and folders?

Windows 11
Windows 11
A Microsoft operating system designed for productivity, creativity, and ease of use.
8,988 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. MotoX80 32,911 Reputation points
    2022-08-31T17:28:26.197+00:00

    Remove the ip address from the user.

    net use r: \\192.168.1.111\files /user:admin  
    

    I would recommend that you copy the files from R to S and then verify that they were all transferred without error. Then go back and delete the files from R:

    robocopy R:\ S:\ /e  
    

    You may also want to use the /l switch which will tell robocopy to just list the files that it would copy without actually copying any data.

    1 person found this answer helpful.
    0 comments No comments

  2. Jolia 6 Reputation points
    2023-01-09T13:12:21.86+00:00

    I read the question and I would say , if it is a small task , just use the free version of Teracopy or Gs Richcopy to this task and then you can back to use Robocopy

    1 person found this answer helpful.
    0 comments No comments