Automating a Rake Task

What is the easiest way (on a machine running Windows) to automate a custom Rake task to run, sleep for 30 minutes, run again and repeat forever?

Hi,

There is a one way you can follow here and might be it is easiest.

Create bat file in windows and put command to run your rake task in that then setup that bat file in windows services and schedule it as per need.

Thanks, Piyush.