I know this is simple but......


  1. Posts : 7
    Windows 7 Home Premium 64 bit
       #1

    I know this is simple but......


    Hi All:
    I am trying to use robocopy to simply backup My Documents from my PC to an external hard drive (Drive F). I would like to do the backup every other day so ideally, robocopy would copy changed files only.

    I created a batch file as follows:
    C:\Windows\system32\robocopy "C:\users\MYNAME\Documents" "f:\My Documents" /MIR /E
    pause
    -------------------------------------------------------------------------------------------------
    The problem is that this batch files deletes everything in f:\My Documents.
    As the screen is whizzing by, I can see references to "*EXTRA file" (screen dump attached). Can anyone help me with this simple issue???

    Many thanks!
    Attached Thumbnails Attached Thumbnails I know this is simple but......-screenshot004.jpg  
      My Computer


  2. Posts : 7,878
    Windows 7 Ultimate x64
       #2

    The /MIR functionality instructs robocopy to mirror the source and the destination. So, if you have anything in F:\My DOcuments that doesn't match what is in the C:\location......you are going to have them removed from the destination. Is that what is happening here?
      My Computer


  3. Posts : 7,730
    Windows 7 Ultimate SP1 64-Bit
       #3

    I had this document in my Vista folder from some time ago, it may be of help to you.

    Windows Robocopy File Backup

    Use Robocopy, which is built into Vista.

    Go to command prompt and type robocopy /?
    This will show you the settings.

    I use two main switches: /mir and /e

    /MIR mirrors the destination to be the same as the source. So in your source location, if you move, delete, add anything, the destination will be mirrored. If you delete something in the source, it gets deleted in the destination. If you move a file from one folder to another in the source, it also gets moved in the destination. If you update a file and it is newer then the destination file will be overwritten with the newer one.

    /E will copy any file that is newer or doesn't exist but doesn't remove files that have been moved or deleted in the source. So if you delete a file from the source, it will remain in the destination. If you move a file from one folder to another in the source, then the destination will contain two copies of the file, one in the old location and one in the new.

    The /E switch is pretty much the same an incremental backup. Depending on what you are doing you might want to use the /MIR option. On my machine, I use /E for documents and pictures in case I accidentally delete something, since documents and pictures can be important. However, for my music directory, since WMP11 is constantly moving and renaming files as I organize my music, I don't want a bunch of extra files everywhere, so I use the /MIR switch just to mirror the backup to the source.

    In my case, I have a batch file that runs every night and it looks like this:

    robocopy "e:\Documents" "f:\Backup\Documents" /e
    robocopy "e:\Pictures" "f:\Backup\Pictures" /e
    robocopy "e:\Contacts" "f:\Backup\Contacts" /e

    robocopy "e:\Favorites" "f:\Backup\Favorites" /mir
    robocopy "e:\Mail" "f:\Backup\Mail" /mir
    robocopy "e:\Music" "f:\Backup\Music" /mir
    robocopy "e:\Videos" "d:\Backup\Videos" /mir

      My Computer


  4. Posts : 7
    Windows 7 Home Premium 64 bit
    Thread Starter
       #4

    pparks1 said:
    The /MIR functionality instructs robocopy to mirror the source and the destination. So, if you have anything in F:\My DOcuments that doesn't match what is in the C:\location......you are going to have them removed from the destination. Is that what is happening here?
    PParks- thanks for your response. I copied all the docs from My Documents on my PC into the f:\My Documents folder. I then ran the batch file (as a test) which is what deleted everything on the external drive in f:\My Documents.
      My Computer


  5. Posts : 7
    Windows 7 Home Premium 64 bit
    Thread Starter
       #5

    seavixen32 said:
    I had this document in my Vista folder from some time ago, it may be of help to you.

    Windows Robocopy File Backup

    Use Robocopy, which is built into Vista.

    Go to command prompt and type robocopy /?
    This will show you the settings.

    I use two main switches: /mir and /e

    /MIR mirrors the destination to be the same as the source. So in your source location, if you move, delete, add anything, the destination will be mirrored. If you delete something in the source, it gets deleted in the destination. If you move a file from one folder to another in the source, it also gets moved in the destination. If you update a file and it is newer then the destination file will be overwritten with the newer one.

    /E will copy any file that is newer or doesn't exist but doesn't remove files that have been moved or deleted in the source. So if you delete a file from the source, it will remain in the destination. If you move a file from one folder to another in the source, then the destination will contain two copies of the file, one in the old location and one in the new.

    The /E switch is pretty much the same an incremental backup. Depending on what you are doing you might want to use the /MIR option. On my machine, I use /E for documents and pictures in case I accidentally delete something, since documents and pictures can be important. However, for my music directory, since WMP11 is constantly moving and renaming files as I organize my music, I don't want a bunch of extra files everywhere, so I use the /MIR switch just to mirror the backup to the source.

    In my case, I have a batch file that runs every night and it looks like this:

    robocopy "e:\Documents" "f:\Backup\Documents" /e
    robocopy "e:\Pictures" "f:\Backup\Pictures" /e
    robocopy "e:\Contacts" "f:\Backup\Contacts" /e

    robocopy "e:\Favorites" "f:\Backup\Favorites" /mir
    robocopy "e:\Mail" "f:\Backup\Mail" /mir
    robocopy "e:\Music" "f:\Backup\Music" /mir
    robocopy "e:\Videos" "d:\Backup\Videos" /mir
    Thank you! I will give this a try.
      My Computer


  6. Posts : 7,878
    Windows 7 Ultimate x64
       #6

    9underpar said:
    pparks1 said:
    The /MIR functionality instructs robocopy to mirror the source and the destination. So, if you have anything in F:\My DOcuments that doesn't match what is in the C:\location......you are going to have them removed from the destination. Is that what is happening here?
    PParks- thanks for your response. I copied all the docs from My Documents on my PC into the f:\My Documents folder. I then ran the batch file (as a test) which is what deleted everything on the external drive in f:\My Documents.
    Was the folder structure the same. If there was 1 extra subfolder on the destination, not on the source, it would have wiped it out.
      My Computer


  7. Posts : 7
    Windows 7 Home Premium 64 bit
    Thread Starter
       #7

    Thanks everyone for your help. It was my error- the source was on a network and I didn't specify the correct source folder. Robocopy now works and it is great!
      My Computer


  8. Posts : 7,730
    Windows 7 Ultimate SP1 64-Bit
       #8

    You're very welcome. Pleased to hear Robocopy did the trick for you and thanks for letting us know.
      My Computer


 

  Related Discussions
Our Sites
Site Links
About Us
Windows 7 Forums is an independent web site and has not been authorized, sponsored, or otherwise approved by Microsoft Corporation. "Windows 7" and related materials are trademarks of Microsoft Corp.

© Designer Media Ltd
All times are GMT -5. The time now is 04:43.
Find Us