The Notebook Review forums were hosted by TechTarget, who shut down them down on January 31, 2022. This static read-only archive was pulled by NBR forum users between January 20 and January 31, 2022, in an effort to make sure that the valuable technical information that had been posted on the forums is preserved. For current discussions, many NBR forum users moved over to NotebookTalk.net after the shutdown.
Problems? See this thread at archive.org.

    Simple backup software for Win 7?

    Discussion in 'Windows OS and Software' started by the half light, Jun 30, 2011.

  1. the half light

    the half light Newbie

    Reputations:
    0
    Messages:
    6
    Likes Received:
    0
    Trophy Points:
    5
    Hello!

    I want a program for Windows 7 that backs up my personal files (NOT my system image/OS/preferences) onto an external drive so that:

    • The files are available for any computer (so it basically copies/pastes the folders and files, and doesn't compress them into a format that needs specific software for restoration)
    • The drive is password protected
    • If possible but not necessary, I can do incremental/differential backups

    I've been using Acronis True Image's File Backup, but that needs Acronis software to open the files...If I needed a file for a school computer, I wouldn't be able to access the backup so I'd have to also copy/paste beforehand, but why do both?

    Any ideas?
     
  2. newsposter

    newsposter Notebook Virtuoso

    Reputations:
    801
    Messages:
    3,881
    Likes Received:
    0
    Trophy Points:
    105
    cobian backup works well.......

    As would any of the file sync programs. Just sync your directories to an external or network disk.

    If you are worried about encryption, you can always whole-disk encrypt the external drive with TrueCrypt.

    If you want things available in the 'cloud' you pretty much HAVE to do your own encryption. Too many chances for things to go missing/stolen at all of the cloud services. Their T&Cs restrict 'liability' to an oops, we'll try harder kind of apology for breaches.
     
  3. aylafan

    aylafan TimelineX Elite

    Reputations:
    438
    Messages:
    1,247
    Likes Received:
    1
    Trophy Points:
    56
    You can always use Windows 7 internal backup program called Robocopy. It's command-line, but really easy to set up once you do a little reading. You can set it up to "only" update files that have been modified and to add new files when found from the source. Then you just run the batch file (*.bat) automatically with Windows Task Scheduler for incremental backups.

    Here is example of the code I use for my backup.bat file. You can modify the drive pathways and delete code for your own use.
    Code:
    REM ***  Robocopy Backup  ***
    
    REM *** Kill any Robocopies that are still running  ***
    taskkill /f /im robocopy.exe
    
    REM ***  Automatic User Login to the laptop over the network ***
    net use \\AYLAFAN-LAPTOP /USER:AYLAFAN-LAPTOP\MYUSERNAME MYPASSWORD
    
    REM ***  Backup pictures to the external hard drive  ***
    start /min robocopy "C:\Users\aylafan\Pictures" "H:\Pictures" /e /nfl /ndl /np /r:1 /w:1 /z /log:C:\Robocopy\logs\externalpictureslog.txt
    
    REM ***  Backup folders to the laptop over the network  ***
    start /min robocopy "C:\Users\aylafan\Downloads\Password Corral" "\\AYLAFAN-LAPTOP\Downloads$\Password Corral" /e /nfl /ndl /np  /r:1 /w:1 /z /log:C:\Robocopy\logs\laptoppasswordlog.txt
    
    exit
    
    P.S. If you want a GUI program that does the same thing then you can try Microsoft's SyncToy with Windows Task Scheduler.
     
  4. JOSEA

    JOSEA NONE

    Reputations:
    4,013
    Messages:
    3,521
    Likes Received:
    170
    Trophy Points:
    131
  5. the half light

    the half light Newbie

    Reputations:
    0
    Messages:
    6
    Likes Received:
    0
    Trophy Points:
    5
    Appreciate all the help! All methods were great for personal backup.
    But...not ideal for accessing on a public computer at school.

    I tried Cobian - it appends the .enc extension to all files, which means I would need to install Cobian on that public computer (which I can't).

    Then I tried Robocopy/SyncToy which was cool, but it had no password protection. Neither did Karen's Replicator. I also attempted to put a portable version of TrueCrypt on the external drive, but in order to run/restore it elsewhere, I would need UAC privileges (which I don't).

    Do you see my problem? I'm not sure if this even exists but I want a program that can: do backup (this is simple!), password protect it, and be universally available for any computer's Window Explorer. Even Acronis's Universal Restore needs the Universal Restore program...
     
  6. anseio

    anseio All ways are my ways.

    Reputations:
    1,940
    Messages:
    2,418
    Likes Received:
    0
    Trophy Points:
    55
    Were you to actually go the System Image route, the .vhd that is created can be mounted as a virtual hard drive and all of the files are accessbile. So, not only do you have a backup of your OS/preferences in an emergency, you also have all of your data, which is accessible via Disk Management.
     
  7. KLF

    KLF NBR Super Modernator Super Moderator

    Reputations:
    2,844
    Messages:
    2,736
    Likes Received:
    896
    Trophy Points:
    131
    Store all necessary files in passworded .zip files and sync them with the best program you found so far.
     
  8. newsposter

    newsposter Notebook Virtuoso

    Reputations:
    801
    Messages:
    3,881
    Likes Received:
    0
    Trophy Points:
    105
    .zip 'password protection' is easily bypassed.
     
  9. hxkclan

    hxkclan Notebook Consultant

    Reputations:
    110
    Messages:
    290
    Likes Received:
    0
    Trophy Points:
    30
  10. HTWingNut

    HTWingNut Potato

    Reputations:
    21,580
    Messages:
    35,370
    Likes Received:
    9,877
    Trophy Points:
    931