Transfering or copying files on another drive

Emm 1 Reputation point
2022-10-09T03:11:58.807+00:00

Transferring or copying a windows image backup and file history on a empty drive planning on using Robocopy file history or windows system image backup but i will be trying out robocopy first to transfer or copy it because it may be the reliable way to do it but I'm still learning so maybe additional insight would be great already tried it last time but i can't access the files and they are invisible in the drive so maybe i missed something out.

robocopy D:\ O:\ /e /zb /copyall /r: 2 /x /v /ts /fp /eta

This is the commands i figured out open to hear some opinions or corrections because maybe i missed something or did something wrong my objective is to have the exact copy.

Also can i still use the drive normally even if it contains a windows image or any third-party backup software? also planned to just use windows image backup or file history to transfer cause its alot easier but still wanna try Robocopy first.

Windows for business | Windows Client for IT Pros | User experience | Other
0 comments No comments
{count} votes

5 answers

Sort by: Most helpful
  1. S.Sengupta 24,636 Reputation points MVP
    2022-10-09T03:24:52.357+00:00

    Kindly go through the following article- step by step instructions given:

    How to use Robocopy to transfer files super-fast over the network on Windows 10

    1 person found this answer helpful.
    0 comments No comments

  2. Ramesh Srinivasan 256 Reputation points Volunteer Moderator
    2022-10-09T04:20:41.763+00:00

    Try "Robocopy /MIR" if you want to mirror a directory tree. It automatically skips files that are identical. Note that it also removes the extra files from the destination folder. You can sync the "WindowsImageBackup" and "FileHistory" folders from another drive.

    Or, try one of the specialized free file sync tools listed in this article.

    • Also can i still use the drive normally even if it contains a windows image or any third-party backup software?

    Yes. You can use the drive normally even if it contains "WindowsImageBackup" and "FileHistory" backup.

    1 person found this answer helpful.
    0 comments No comments

  3. Emm 1 Reputation point
    2022-10-10T12:20:07.533+00:00

    So I'll be trying Robocopy to copy both windowsimagebackup and file history after i had a problem with trying to image backup the drive that has the windowsimagebackup to my other drive multiple times it was awlays stuck somewhere in 50 Percent and didn't progress so i had to cancel it after waiting for a long time questions is what is the best way to use robocopy to copy my files

    I will be using this commands ROBOCOPY D:\ O:\ /e /zb /copyall /r: 2 /x /v /ts /fp /eta /log+: D:\Logg.log /tee

    I'm still not sure with this commands but is it ok for the files that i will be copying did i missed something out or did something wrong. I have
    allot of questions cause there is not allot of information about RoboCopy my goal is to just have the exact copy of it in my other drive as if nothing happened.

    Is /mir the same as /e? with the difference that /mir remove files on destination that isn't included in source. I still have no idea how file selection and some copy options works and but i figure that i won't be using file selection options cause the drive I'm about to copy into is empty and i don't plan to exclude stuffs but i wanna know something about /im /is /it causes i don't fully understand them information presented in Microsoft is not that clear to me and additional insight would be helpful.

    0 comments No comments

  4. Limitless Technology 39,926 Reputation points
    2022-10-10T14:32:34.927+00:00

    Hello there,

    It is not recommended to use a recovery drive to save other documents but you can use the drive.

    The easiest way to copy a folder with all files and subfolders is to run this command: robocopy c:\temp\source c:\temp\destination /E /DCOPY:DAT /R:10 /W:3. The /E switch tells Robocopy to copy all subfolders, including empty ones. If you don't want to copy empty subfolders, use the /S switch.

    Here is the list of all useful commands https://learn.microsoft.com/en-us/windows-server/administration/windows-commands/robocopy

    Robocopy will fail to copy files that are locked by other users or applications, so limiting the number of retries with /R:0 will speed up copying by skipping any in-use files. The Windows Volume Shadow Copy service is the only Windows subsystem that can copy open files. Robocopy does not use the Volume Shadow Copy service, but it can back up a volume shadow that has already been created with VSHADOW or DISKSHADOW.

    --------------------------------------------------------------------------------------------------------------------------------

    --If the reply is helpful, please Upvote and Accept it as an answer–

    0 comments No comments

  5. Emm 1 Reputation point
    2022-10-10T15:10:39.563+00:00

    May i ask what's the difference between /dcopy /copy and /Copyall why can't i just use /Copyall? and can i use /dcopy and copy all

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.