Backing up

Soldato
Joined
1 Mar 2007
Posts
4,795
Location
Portsmouth
Just wondering if there is some kinda software that will save me manually backing up my data?

At the moment all my new data get saved to my C drive edit and if I decicde to keep it transfer it to my D drive and then make an addition copy to my E drive, but this takes quite a while copying the same folder to each drive.

Maybe there is some software that will copy said docs to both drives?
 
synctoy or syncback

will both do it

but remember, if the D and E are in the same PC, and your PC gets stolen, you have still lost all your data
 
they are both free

syncback has automated back up availble

synctoy, you have to set the automation using windows
 
your welcome, and yes it will save you loads of time

i was using syncback but have just moved back to synctoy

just prefer it

even though you have to set up automation through windows task scheduler


http://www.mydigitallife.info/2009/11/13/synctoy-2-1-free-download-to-sync-multiple-folder-sets/

Wow, this looks great :D Just gave it a test run. Seems to work really well..love it :D This will save me loads of time now!

One thing whats the 'new folder pair' about?

Also how do you set up automation through windows task scheduler?
 
A folder pair is basically the folder you want to back up and the place you want the back up to go.

In SyncToy you can do more than just send files from left to right. You can use it to Synchronise a pair of folders, so what happens in one is reflected in the other.

If you read through the SyncToy site it is all explained there.
 
as SiriusB says.

folder pairs are just a way for you to choose different folders that you wish to back up/ or sync
 
i just use robocopy (built into windows already). i call it from a batch file so it takes a single click to run.

robocopy e:\ i:\ /MIR /xd "System Volume Information" "RECYCLER" "$RECYCLE.BIN" /LOG:f:\robocopy.txt /NP /TEE

e: is my source
i: is my destination
/MIR tells it i want to mirror e: - this means if i delete something from e, it also gets deleted from i:
/xd is to exclude directories
/LOG - should be obvious. not necessary but i always like to check it.
 
i just use robocopy (built into windows already). i call it from a batch file so it takes a single click to run.

robocopy e:\ i:\ /MIR /xd "System Volume Information" "RECYCLER" "$RECYCLE.BIN" /LOG:f:\robocopy.txt /NP /TEE

e: is my source
i: is my destination
/MIR tells it i want to mirror e: - this means if i delete something from e, it also gets deleted from i:
/xd is to exclude directories
/LOG - should be obvious. not necessary but i always like to check it.

Any benefits over synctoy? Looks complicated :o
 
Back
Top Bottom