A Criar Tarefas Agendadas

Estou a trabalhar num projecto C# WPF. Eu preciso permitir que o usuário crie e adicione uma tarefa agendada para o escalonador de Tarefas do Windows.

Como poderia fazer isso e de que preciso usando diretivas e referências, já que não encontro muito ao pesquisar na Internet.

Author: Alex.K., 2011-09-13

2 answers

Pode usar O pacote de gestão de Tarefas:

using System;
using Microsoft.Win32.TaskScheduler;

class Program
{
   static void Main(string[] args)
   {
      // Get the service on the local machine
      using (TaskService ts = new TaskService())
      {
         // Create a new task definition and assign properties
         TaskDefinition td = ts.NewTask();
         td.RegistrationInfo.Description = "Does something";

         // Create a trigger that will fire the task at this time every other day
         td.Triggers.Add(new DailyTrigger { DaysInterval = 2 });

         // Create an action that will launch Notepad whenever the trigger fires
         td.Actions.Add(new ExecAction("notepad.exe", "c:\\test.log", null));

         // Register the task in the root folder
         ts.RootFolder.RegisterTaskDefinition(@"Test", td);

         // Remove the task we just created
         ts.RootFolder.DeleteTask("Test");
      }
   }
}

Em alternativa, pode usara API nativa ou ir para Quartz.NET Ver isto para mais detalhes.

 185
Author: Dmitry, 2018-02-20 00:21:23
Isto funciona comigo. https://www.nuget.org/packages/ASquare.WindowsTaskScheduler/ É uma API fluente bem concebida.
//This will create Daily trigger to run every 10 minutes for a duration of 18 hours
SchedulerResponse response = WindowTaskScheduler
    .Configure()
    .CreateTask("TaskName", "C:\\Test.bat")
    .RunDaily()
    .RunEveryXMinutes(10)
    .RunDurationFor(new TimeSpan(18, 0, 0))
    .SetStartDate(new DateTime(2015, 8, 8))
    .SetStartTime(new TimeSpan(8, 0, 0))
    .Execute();
 19
Author: Uday Reddy, 2016-10-26 16:33:11