tags:

views:

119

answers:

2

I have run a few using batch jobs, but, I am wondering what would be the most appropriate? Maybe using time.strftime? Big noob here, thanks in advance.

+5  A: 

If you're looking to do recurring scheduled tasks, then the Task Scheduler (Vista) or Scheduled Tasks (XP and, I think, earlier) is the appropriate method on Windows.

Harper Shelby
A: 

I'd second using the Task Scheduler.

I have also read about a 'cron-like' python based application PyCron - http://www.bigbluehost.com/article4.html . If you're from the Unix end of town you might find it more familiar than the Windows scheduler. Never used it myself but it might be of interest.

southof40