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?
 
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?
 
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