创建计划任务

我在做一个 C # WPF 项目。我需要允许用户创建并向 Windows 任务计划程序添加计划任务。

我怎么能这样做,我需要什么使用指令和参考,因为我没有找到很多时,搜索互联网。

297680 次浏览

你可以使用 任务调度程序管理的包装:

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

你也可以选择使用 本地人 API 或者使用 Quartz.NET。详细信息请参阅 这个

这对我有用 Https://www.nuget.org/packages/asquare

它的设计非常流畅。

//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();