Backup Windows Server 2008 FTP and Cloud

1

I need to generate daily backups on a windows server 2008 R2 server, the backups are of several folders and applications installed on this server, does windows server have tool for this, some tool of the system itself?

I have little experience with the issue, my area in fact and development.

Backups need to be done for FTP and in a dropbox and google drive life cloud.

I've been looking at some third-party tools and have not seen anything that fits with what I need "cost / benefit", I'm even thinking of developing the tool myself.

Any suggestions?

    
asked by anonymous 01.07.2016 / 16:29

1 answer

0

You can use Windows's own robocopy to optimize your backups according to your needs.

Robocopy Documentation - link

And you can use cloud for example Google Drive, using the type syntax:

    robocopy "\Diretório\" "\GoogleDrive\dir" /copyall /sec /mir /r:1 /w:1
    
16.09.2016 / 14:05