我正在从事C#WPF项目。我需要允许用户创建计划任务并将其添加到Windows Task Scheduler。
我该如何去做,以及我需要什么使用指令和引用,因为在搜索Internet时找不到太多东西。
最佳答案
您可以使用Task Scheduler Managed Wrapper:
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");
}
}
}
另外,您可以使用native API或使用Quartz.NET。有关详细信息,请参见this。
关于c# - 创建计划任务,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/7394806/