请安排预约任务

时间:2013-04-22 02:00:35

标签: c# scheduled-tasks

我正在尝试创建一个计划任务(使用计划的任务包装器)每3小时触发一次。我每天都安装了这个任务,但是在完成文档后甚至不能每隔几个小时运行一次。 LogonType也不太确定。任何人都可以让我知道我哪里出错了吗?

        private void button1_Click(object sender, EventArgs e)
    {
        using (TaskService ts = new TaskService())
        {
            var androback = ts.GetTask("Andro_Inc_Backup");
            bool taskExists = androback != null;
            if (taskExists)
            {
                MessageBox.Show("Andromeda incremental backup task already installed");
            }
            else
            {
                TaskDefinition td = ts.NewTask();
                td.RegistrationInfo.Description = "Incremental Backup";
                td.Principal.LogonType = TaskLogonType.ServiceAccount;
                td.Triggers.Add(new DailyTrigger { DaysInterval = 1 });
                td.Actions.Add(new ExecAction("C:\\Rameses\\Program\\Inc_Cloud_Backup.exe", null));
                const string taskname = "Inc_Backup";
                ts.RootFolder.RegisterTaskDefinition(taskname, td);
                MessageBox.Show("Incremental Backup Task Installed");
            }
        }
    }

1 个答案:

答案 0 :(得分:0)

我相信您正在寻找 dailyTrigger.Repetition.Interval 属性。

DateTime datetime = DateTime.Today;
DateTime startDateTime = new DateTime(datetime.Year, datetime.Month, datetime.Day, 0, 0, 0);
DailyTrigger dailyTrigger = new DailyTrigger { StartBoundary = startDateTime, Enabled = true, DaysInterval = 1 };
dailyTrigger.Repetition.Interval = TimeSpan.FromHours(23);
dailyTrigger.Repetition.Interval = TimeSpan.FromHours(3);
td.Triggers.Add(dailyTrigger);

你可以使用codeplex上的每周触发器样本作为参考,它会添加一个触发器,从明天开始,将在周一和周六每隔一周触发一次,并在接下来的11个小时内每10分钟重复一次

其他示例为here