Automatically Execute Program

I have a file processing utility I've created and I need it to execute every day at a specific time to process data. What would be the best way to do this on windows? Someone mentioned WINHOOK to me a while back?

Thanks for your help,
Return 0;
closed account (z05DSL3A)
Windows 'Scheduled Tasks'.
ah! Simple enough. Thanks.
Ok. To take it a step further. Let's say my program processes files in three different locations at different times of the day. Scheduled Tasks will just execute the program, but how would I schedule say, specific functions to execute at specific times?
Why can't you simply code your program to grab the time from the system clock and then do this if this time, do that if that time, etc?
closed account (z05DSL3A)
If it was up to me I would add command line switches to the App, then schedule the task to do the correct task (via the switches) at the correct time.
Topic archived. No new replies allowed.