gpt4 book ai didi

c# - 使用任务计划程序创建重复性任务

转载 作者:太空宇宙 更新时间:2023-11-03 19:09:32 30 4
gpt4 key购买 nike

我正在使用此处的任务计划程序库:taskscheduler.codeplex.com

根据他们的示例,我正在尝试创建具有以下行为的任务:任务应在所有 12 个月内每 1 小时运行一次,包括一个月中的所有天数。

除了任务不会每 1 小时重复一次之外,以下代码正在执行此操作。它运行一次,然后在第二天运行。

                TaskDefinition td = ts.NewTask();
td.RegistrationInfo.Description = "sample task";

// Create a trigger that will execute very 1 hour.
var trigger = new MonthlyTrigger();
trigger.StartBoundary = DateTime.Now + TimeSpan.FromSeconds(60);
trigger.Repetition.Interval = TimeSpan.FromHours(1);
trigger.Repetition.Duration = TimeSpan.FromHours(24);
List<int> days = new List<int>();
for (int i = 1; i < 32; i++)
{
days.Add(i);
}
trigger.DaysOfMonth = days.ToArray();

td.Triggers.Add(trigger);
td.Actions.Add(new ExecAction(Assembly.GetEntryAssembly().Location));
// Register the task in the root folder
ts.RootFolder.RegisterTaskDefinition(@"RemoteClient Task", td);

我也尝试过 TimeTrigger,但这也不会重复任务。如果我在计划任务窗口中看到创建的任务,我会看到以下内容:

Task Scheduler actions

如果您看到红色突出显示的部分,则表示任务重复已关闭。我需要启用它,以便我的任务可以每天每小时执行一次。在这个方向上的任何帮助都会很棒。

谢谢,周杰伦

最佳答案

我相信下面一行是罪魁祸首。

trigger.Repetition.Duration = TimeSpan.FromHours(24);

您想删除这一行。我编写了以下程序,它按预期工作。

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";

// Add a trigger that, starting now, will fire every day
// and repeat every 1 minute.
var dt = new DailyTrigger();
dt.StartBoundary = DateTime.Now;
dt.Repetition.Interval = TimeSpan.FromSeconds(60);
td.Triggers.Add(dt);

// 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);
}
Console.ReadLine();
}

上面的任务在 Task Scheduler UI 中是这样的:

enter image description here

关于c# - 使用任务计划程序创建重复性任务,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21939133/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com