I just saw this question and one of the answers looks really appealing to me, but I have no idea where the classes come from.
What assembly can I find the DailyTrigger and ScheduledTasks class?
What namespace are they in?
Are they only useful for the Windows Scheduled Tasks located in the Control Panel?
Is there any other useful information about them that I should know?
Code I'm referring to:
Trigger tg = new DailyTrigger();
ScheduledTasks st = new ScheduledTasks();
Task t = st.OpenTask("foo");
t.Triggers.Add(tg);
t.Save();