1. You are viewing our forum as a guest. For full access please Register. WindowsBBS.com is completely free, paid for by advertisers and donations.

Updating a backup - software?

Discussion in 'Other PC Software' started by drburdi, 2002/02/08.

Thread Status:
Not open for further replies.
  1. 2002/02/08
    drburdi

    drburdi Inactive Thread Starter

    Joined:
    2002/02/08
    Messages:
    1
    Likes Received:
    0
    want to backup my HD to my secondary HD, then have some way of updating my secondary when the primary has changed. Is there any software that does this?
     
  2. 2002/02/11
    tommyc

    tommyc Inactive

    Joined:
    2002/01/07
    Messages:
    20
    Likes Received:
    0
    There is a rather low-tech way for you to do this. You could use the xcopy command with the /d parameter. For example:

    @ECHO OFF
    ECHO *
    ECHO *
    ECHO *
    ECHO Backing up MY DOCUMENTS to the Network
    echo *
    echo Checking Dates on Files .... Please Wait
    XCOPY /D C:\MYDOCU~1\*.* M:\mclemojw\MYDOCU~1 /S /E
    ECHO *
    ECHO *
    ECHO *
    ECHO Backup is Completed !!!!
    ECHO *
    ECHO *
    call c:\windows\quit.bat

    This little file enables one of our clients to backup all files modified
    since the previous backup in his My Documents folder to a network drive. Since he prefers to do this at the end of the day and doesn't want to wait around for it to complete, I have this bat file call quit.bat, which consists merely of the line:
    C:\WINDOWS\RUNDLL.EXE user.exe,exitwindows
     

  3. to hide this advert.

  4. 2002/02/11
    Zephyr

    Zephyr Inactive

    Joined:
    2002/01/21
    Messages:
    1,519
    Likes Received:
    0
    Another excellent free utility is XXCOPY

    With it the syntax is merely:

    xxcopy /clone c:\ d:\

    Each subsequent usage will incrementally amend the first so it runs very fast after the first usage.
     
  5. 2002/02/12
    tommyc

    tommyc Inactive

    Joined:
    2002/01/07
    Messages:
    20
    Likes Received:
    0
    Drburdi,
    Zephyr is quite right. XXCOPY is much more appopriate and versatile than my silly little batch file with xcopy.
     
  6. 2002/02/12
    Zephyr

    Zephyr Inactive

    Joined:
    2002/01/21
    Messages:
    1,519
    Likes Received:
    0
    I will add a word of caution for those, like me, who are prone to trying things out before reading the instructions fully.

    The XXCOPY /CLONE C:\ D:\ command will copy the entire contents of the C drive to the D drive and in the process delete anything found on the target drive (D) that does not exist on the source (C) drive. We have given it the entire drive for its exclusive use. That has some dire implications if you have other files on the target drive.

    To avoid this you can use the command:

    XXCOPY /CLONE C:\ D:\BACKUP\

    and it will not delete any files except those found in the BACKUP directory, or whatever you choose to name it.

    The advantage of using the full drive command is in order to produce a drive that could actually be made bootable in case the primary drive failed. If you don't need that capability, I suggest copying to a folder as indicated above.

    It has many other switches and I recommend some reading of the help files. There is also a great support forum for XXCOPY on Yahoo that will answer any questions you may have.

    NOW, my conscience is clear!
     
Thread Status:
Not open for further replies.

Share This Page

  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.