2

我创建了一个任务计划程序并将其触发时间设置为固定,例如每天下午 5:00,但我想在系统启动或引导时触发该事件。如果您有任何示例,请帮助我提供代码。

提前致谢。

代码 : - - - - - - - - - - - - - - - - - - - - - - - - ------

 public static void CreateTask()
        {
            using (TaskService task = new TaskService())
            {`enter code here`
                TaskDefinition taskdDef = task.NewTask();

                taskdDef.RegistrationInfo.Description = "Does something";
                taskdDef.RegistrationInfo.Documentation = "http://www.mysite.com";

                taskdDef.Settings.ExecutionTimeLimit = new TimeSpan(0, 10, 0);
                taskdDef.Settings.AllowDemandStart = true;

                taskdDef.Actions.Add(new ExecAction(@"D:\Myfolder\bin\SGSclient.exe", "yourArguments", null));
                task.RootFolder.RegisterTaskDefinition("YourTask", taskdDef);
            }
        }
4

4 回答 4

12

使用来自 GitHub 的任务计划程序管理器库,您可以这样编写

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 after the system boot
         td.Triggers.Add(new BootTrigger() );

         // 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");
      }
   }
}
于 2012-05-31T12:13:30.957 回答
1

您可以将其作为启动任务添加到注册表。见这里

于 2012-05-31T11:53:51.313 回答
1

2000,经验值

开始 -> 设置 -> 控制面板 -> 计划任务
打开任务的属性。
打开“计划”选项卡。
从“计划任务”下拉菜单中选择“在系统启动时”。

远景

开始 -> 设置 -> 控制面板 -> 管理工具 -> 任务计划程序
打开任务的属性。
打开“触发器”选项卡,然后编辑或创建触发器。
从“开始任务”下拉菜单中选择“启动时”。

于 2012-05-31T11:54:37.307 回答
0

你应该做一个Windows 服务e。

于 2012-05-31T11:51:03.217 回答