I need a backup application which automatically backs up a folder into a zip (named the date/time), hourly.

Which application can I use for this?

I'm running Windows 7 (32bit) Ultimate.

link|improve this question

78% accept rate
feedback

2 Answers

up vote 2 down vote accepted

I'd suggest Cobian backup. You can set it to back up your folder hourly and it's possible to name the backups as date/time (or anything you'd like, really)

link|improve this answer
Thank you. This is probably the easiest and works great. – TutorialPoint Oct 31 '10 at 12:39
feedback

You could create a batch file using the command line version of 7zip (7za) and then use the standard Windows task scheduler to kick it off as required.

Something like:

7za -a -tzip c:\MyZipfile_%date:~-4,4%%date:~-7,2%%date:~-10,2%.zip c:\myfoldertozip\*.*

That creates a zip file with a name based on the current date. Have a look at this article for ways to grab date/time values for the filename and here for how to use the task scheduler.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.