views:

346

answers:

2

I have a small program that I would like to turn into an installable windows.form. It needs to automatically be run as a cron job/scheduled task. How can I do this?

C#

A: 

You can either have it setup as a Windows Service or the at command can run it as a scheduled task.

http://support.microsoft.com/kb/313565

Daniel A. White
Windows Services cannot show a form as they don't have a desktop available.
ZippyV
A: 

either as a 'scheduled task' or as a windows service with some proprietary scheduling mechanism

Manu