Need Copy Program - what will do this function?

Discussion in 'backup, imaging & disk mgmt' started by AaLF, Jun 22, 2014.

Thread Status:
Not open for further replies.
  1. AaLF

    AaLF Registered Member

    Joined:
    Feb 20, 2005
    Posts:
    986
    Location:
    Sydney
    • Backup is needed for a 2TB Data HDD (not Cdrive).
    • Need to auto-copy over contents/changes to data stored e.g. daily/weekly.
    • Both original & backup HDD need to be both online fully-working.
    • Backup HDD - must remain working & functional, not an image backup for the future rather a more conventional 'copy/paste/replace contents' concept.
    So the copy-program copies over any content changes from A to B & both drives are online & fully working & accessible.
     
  2. MrBrian

    MrBrian Registered Member

    Joined:
    Feb 24, 2008
    Posts:
    6,032
    Location:
    USA
    FreeFileSync
     
  3. TheRollbackFrog

    TheRollbackFrog Imaging Specialist

    Joined:
    Mar 1, 2011
    Posts:
    4,954
    Location:
    The Pond - USA
    Bvckup2... the best replicator in the business. Uses DeltaCopy to only update the parts of files that have changed.
     
  4. Brian K

    Brian K Imaging Specialist

    Joined:
    Jan 28, 2005
    Posts:
    12,147
    Location:
    NSW, Australia
    If you like scheduled batch files, Robocopy. It's already in Windows.

    Code:
    @echo off
    if not defined RunTask set RunTask=1 & start "robocopy" /min %SystemRoot%\system32\cmd.exe /c "%0" & goto :EOF
    robocopy G:\ F:\Backup_G *.* /mir /XD "System Volume Information" Recycler $Recycle.bin /copyall /dcopy:t /r:0 /log:c:\rclog.txt /v /xj /tee
    attrib -s -h F:\Backup_G
     
  5. allizomeniz

    allizomeniz Registered Member

    Joined:
    Aug 23, 2009
    Posts:
    943
    I've been using FreeFileSync for about a year now and very happy with it. You can schedule batch jobs for unattended syncs but I've never done it, I've just read about it in the Help file.
     
  6. TomAZ

    TomAZ Registered Member

    Joined:
    Feb 27, 2010
    Posts:
    1,131
    Location:
    USA
  7. Baedric

    Baedric Registered Member

    Joined:
    Apr 14, 2006
    Posts:
    163
    I have two that I have used in the past. FastCopy and Karen's Replicator. I am not positive they will do everything you are looking for though.
     
  8. AaLF

    AaLF Registered Member

    Joined:
    Feb 20, 2005
    Posts:
    986
    Location:
    Sydney
    Thanks 4 the replies guys. Went with robocopy with a simple gui for ease of use for novices. And I gotta give a big thumbs up.
     
Thread Status:
Not open for further replies.
  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.