创建计划任务

我目前正在处理一个C#WPF项目。 我需要允许用户创建并将计划任务添加到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"); } } } 

或者,您可以使用本机 API或去Quartz.NET 。 详情请参阅此 。

这适用于我https://www.nuget.org/packages/ASquare.WindowsTaskScheduler/

这是很好的设计Fluent API。

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