[IT People] Cloud backups

Zlex

Veteran XX
So I want to automatically backup a few files to some webspace that I have. Can anyone recommend me some software that will automatically upload some files?
 
i think vawlk means crashplan, which is really good

but if you only need to backup a few files, dropbox is great, and free
 
When you lose internet you can play Solitaire. I plan to make a cloud-based Solitaire that will only be played when the cloud crashes aka zero cost to run business.

???

profit.
 
you can even make a batch file with code like this:

Code:
xcopy  "E:\Important Stuff I Want To Backup" "C:\Users\Penisface\My Dropbox\Important Stuff I want to Backup" /e /h /k /y /d

and set it as a scheduled task. then you can automatically backup files you can't store in the dropbox all the time.

that code will copy a recursive directory over, and then each time its run, only add new/updated files
 
Back
Top