Back Up Software to External Drive...

Associate
Joined
4 Jul 2008
Posts
1,623
Location
Belfast, N.Ireland
What is a good piece off software (free) that would be a good to handle back ups from my 1tb hard drive to a 500 gig external?

So that would back up certain files and folders?

Thanks
 
I use SyncToy on my 8GB USB drive and it does a good job. All I do is sync it to a folder on my hard drive about once a day, the main reason is in case I loose the damn thing.
 
robocopy /e "c:\users\bledd\music" "z:\music"
robocopy /e "c:\users\bledd\pictures" "z:\pictures"
 
robocopy /e "c:\users\bledd\music" "z:\music"
robocopy /e "c:\users\bledd\pictures" "z:\pictures"

yep bledd converted me on this and i used it all the time, really good bit of software:

here is my code:

robocopy C:\Users\Jimmy\music s:\music /MIR /R:50
robocopy C:\Users\Jimmy\Pictures s:\Pictures /MIR /R:50
robocopy C:\Users\Jimmy\Utilities s:\Utilities /MIR /R:50
robocopy C:\Users\Jimmy\Videos s:\Videos /MIR /R:50
robocopy C:\Users\Jimmy\Documents s:\Archive\documents /MIR /R:50
 
Back
Top Bottom