1

我需要每天下午 3 点运行我的任务,但后台任务生成器只需要一个间隔来重复任务。实现这一目标的方法是什么?(Windows 8.1 通用应用程序)。

4

2 回答 2

0

如果您的环境确实如此,我鼓励您使用常规的 Windows 任务调度程序。我会告诉您如何执行此操作,但这只是对先前答案的重复: 创建计划任务

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");
      }
   }
}
于 2015-03-15T01:20:07.770 回答
0

查看调度库。

我之前成功使用过石英:http ://www.quartz-scheduler.net/

否则,如果可行,一个更简单和更容易的解决方案是让您的进程根据操作系统的预定时间运行。Windows 支持并鼓励对任务进行调度

于 2015-03-15T01:10:53.843 回答