Hello,
I recently downloaded and registered Comodo, as I was looking for a backup solution for a coworker of mine. I have a few questions about synchronization.
I was able to set up a synchronize to a network computer, and my files synced, but then I noticed i had 600 mb of files, and decided to clean some up. I was able to delete, and then backup ran its sync but didnt delete the files on the server.
If, or when, are the files deleted on server after being deleted on client?
Thanks,
--Jack
p.s.
I was also testing Email notifies on incremental and full backups. I'd like to be able to do a backup every hour, but would only like to send an email when files were modified. Could you possibly add an option for that?
I'm not sure what type of backup solution you are trying to come up with, but I'll let you know what I had done (before Comodo Backup).
My LG DVD burner supports DVD-RAM media (maybe most do, but I know for sure mine does) which basically makes the disc behave like a 4GB floppy, add/remove files at will.
So I build a couple batch files knowing that I needed to backuip 8GB over 2 disks. Each file contained a few calls to ROBOCOPY (part of the
Resource Kit Tools) which supports a "mirror" function...
The batch calls look like...
robocopy "D:\My Downloads" "E:\My Downloads" /s /mirThe script behaviour becomes...
- 1st run, the script copies all files/subdirectories onto my DVD-RAM (E) media for the specified path
- on subsequent runs of the script (after I have added, deleted and/or changes the files are subdirectories to the source folder) the batch files will add new content to , remove missing content from, and skip unmodified content on the DVD-Ram drive (destination)
Is this what you meant by synchronization?