TaskScheduler 2.10.1

dotnet add package TaskScheduler --version 2.10.1
NuGet\Install-Package TaskScheduler -Version 2.10.1
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="TaskScheduler" Version="2.10.1" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add TaskScheduler --version 2.10.1
#r "nuget: TaskScheduler, 2.10.1"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install TaskScheduler as a Cake Addin
#addin nuget:?package=TaskScheduler&version=2.10.1

// Install TaskScheduler as a Cake Tool
#tool nuget:?package=TaskScheduler&version=2.10.1

About

The original and most popular .NET wrapper for the Windows Task Scheduler. It provides functionally complete classes that cover all development aspects related to system tasks.

More information can be found on the project page on GitHub.

Support

Below are links to sites that provide in-depth examples, documentation and discussions. Please go here first with your questions as the community has been active for over a decade.

  • Wiki - Sample code, library how-to, troubleshooting, etc.
  • API documentation - Class/method/property documentation and examples
  • Full Issues Log - Use the search box to see if your question may already be answered.
  • Discussion Forum - Users helping users, enhancement requests, Q&A (retired Google forum here)
  • Troubleshooting Tool - Tool to help identify and fix configuration and connectivity issues. (ClickOnce installer here)

Key Features

Microsoft introduced version 2.0 (internally version 1.2) with a completely new object model with Windows Vista. The managed assembly closely resembles the new object model but allows the 1.0 (internally version 1.1) COM objects to be manipulated. It will automatically choose the most recent version of the library found on the host system (up through 1.4). Core features include:

  • Separate, functionally identical, libraries for .NET 2.0, 3.5, 4.0, 4.52, 5.0, 6.0, .NET Standard 2.0, .NET Core 2.0, 2.1, 3.0, 3.1.
  • Unlike the base COM libraries, this wrapper accommodates creating and viewing tasks up and down stream.
  • Supports all V2 native properties, even under V1 tasks.
  • Maintain EmailAction and ShowMessageAction using PowerShell scripts for systems after Win8 where these actions have been deprecated.
  • Supports all action types (not just ExecAction) on V1 systems (XP/WS2003) and earlier (if PowerShell is installed).
  • Supports multiple actions on V1 systems (XP/WS2003). Native library only supports a single action.
  • Supports serialization to XML for both 1.0 and 2.0 tasks (base library only supports 2.0)
  • Supports task validation for targeted version.
  • Supports secure task reading and maintenance.
  • Fluent methods for task creation.
  • Cron syntax for trigger creation.

The currently supported localizations include: English, Spanish, Italian, French, Chinese (Simplified), German, Polish and Russian.

Usage

You can perform several actions in a single line of code:

// Run a program every day on the local machine
TaskService.Instance.AddTask("Test", QuickTriggerType.Daily, "myprogram.exe", "-a arg");

// Run a custom COM handler on the last day of every month
TaskService.Instance.AddTask("Test", new MonthlyTrigger { RunOnLastDayOfMonth = true }, 
    new ComHandlerAction(new Guid("{CE7D4428-8A77-4c5d-8A13-5CAB5D1EC734}")));

For many more options, use the library classes to build a complex task. Below is a brief example of how to use the library from C#.

using System;
using Microsoft.Win32.TaskScheduler;

class Program
{
   static void Main()
   {
      // Get the service on the remote machine
      using (TaskService ts = new TaskService(@"\\RemoteServer", "username", "domain", "password"))
      {
         // 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.
         // (Use the username here to ensure remote registration works.)
         ts.RootFolder.RegisterTaskDefinition(@"Test", td, TaskCreation.CreateOrUpdate, "username");
      }
   }
}

For extended examples on how to the use the library, look at the Examples Page.

Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net5.0-windows7.0 is compatible.  net6.0 was computed.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net6.0-windows7.0 is compatible.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed. 
.NET Core netcoreapp2.0 is compatible.  netcoreapp2.1 is compatible.  netcoreapp2.2 was computed.  netcoreapp3.0 is compatible.  netcoreapp3.1 is compatible. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net20 is compatible.  net35 is compatible.  net40 is compatible.  net403 was computed.  net45 was computed.  net451 was computed.  net452 is compatible.  net46 was computed.  net461 was computed.  net462 was computed.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages (16)

Showing the top 5 NuGet packages that depend on TaskScheduler:

Package Downloads
Dynamicweb.Admin

Package Description

TaskSchedulerEditor

Provides localizable UI elements for editing classes in the TaskScheduler library.

UACHelper

UACHelper is a helper class library to detect, manage and use UAC functionalities (Supporting WinXP+)

ZeroInstall.Commands

Command-line interface for Zero Install (both an actual CLI and a library for building other clients)

BIP.RPA.CommonUtilities

A nuget utility shared for robots made by BIP

GitHub repositories (62)

Showing the top 5 popular GitHub repositories that depend on TaskScheduler:

Repository Stars
2dust/v2rayN
A GUI client for Windows, support Xray core and v2fly core and others
netchx/netch
A simple proxy client
nilaoda/N_m3u8DL-CLI
[.NET] m3u8 downloader 开源的命令行m3u8/HLS/dash下载器,支持普通AES-128-CBC解密,多线程,自定义请求头等. 支持简体中文,繁体中文和英文. English Supported.
Klocman/Bulk-Crap-Uninstaller
Remove large amounts of unwanted applications quickly.
AutoDarkMode/Windows-Auto-Night-Mode
Automatically switches between the dark and light theme of Windows 10 and Windows 11
Version Downloads Last updated
2.10.1 659,660 2/10/2022
2.10.0 17,065 1/24/2022
2.9.3 41,609 12/13/2021
2.9.2 71,306 9/30/2021
2.9.1 322,049 1/28/2021
2.9.0 33,258 12/9/2020
2.8.21 306,534 9/1/2020
2.8.20 60,683 6/20/2020
2.8.19 26,909 6/1/2020
2.8.18 786,076 12/20/2019
2.8.17 50,517 11/9/2019
2.8.16 40,039 10/15/2019
2.8.15 122,871 7/19/2019
2.8.14 5,292 7/17/2019
2.8.13 6,588 7/12/2019
2.8.12 16,222 6/18/2019
2.8.11 38,864 5/6/2019
2.8.10 25,989 4/8/2019
2.8.8 56,306 3/5/2019
2.8.7 213,732 1/2/2019
2.8.6 114,843 10/26/2018
2.8.5 54,701 9/17/2018
2.8.4 32,502 7/18/2018
2.8.3 5,532 7/18/2018
2.8.2 5,924 7/16/2018
2.8.1 67,624 4/14/2018
2.8.0 17,502 3/12/2018
2.7.4 69,072 3/2/2018
2.7.3 11,399 2/9/2018
2.7.2 187,763 11/16/2017
2.7.1 6,111 11/16/2017
2.6.5 9,767 11/7/2017
2.6.4 9,777 11/7/2017
2.6.3 10,266 10/23/2017
2.6.2 14,553 10/6/2017
2.6.1 21,573 9/13/2017
2.6.0 95,100 8/29/2017
2.5.28 68,527 6/27/2017
2.5.27 9,570 6/26/2017
2.5.26 14,827 6/26/2017
2.5.24 11,106 6/26/2017
2.5.23 1,989,101 4/7/2017
2.5.22 85,326 2/5/2017
2.5.21 187,105 7/29/2016
2.5.20 83,405 5/14/2016
2.5.19 33,953 4/27/2016
2.5.18 8,923 4/11/2016
2.5.17 5,901 4/7/2016
2.5.16 22,320 3/15/2016
2.5.15 6,889 3/10/2016
2.5.14 8,991 2/12/2016
2.5.13 13,617 2/7/2016
2.5.12 13,997 1/13/2016
2.5.11 12,976 1/4/2016
2.5.10 5,274 12/30/2015
2.5.9 5,509 12/26/2015
2.5.8 5,294 12/22/2015
2.5.7 5,816 12/16/2015
2.5.6 6,745 12/11/2015
2.5.5 5,777 12/7/2015
2.5.4 20,514 11/17/2015
2.5.3 8,584 11/11/2015
2.5.2 5,292 11/10/2015
2.5.1 5,266 11/9/2015
2.5.0 5,954 11/2/2015
2.4.2 45,933 9/17/2015
2.4.0 17,706 8/14/2015
2.3.4 11,748 6/26/2015
2.3.3 5,275 6/24/2015
2.3.2 47,770 4/24/2015
2.3.1 8,818 3/23/2015
2.3.0 36,595 12/18/2014
2.2.2 16,306 9/25/2014
2.2.1 6,080 9/10/2014
2.2.0 14,470 5/4/2014
2.1.1 6,895 4/17/2014
2.1.0 6,451 4/9/2014
2.0.3 12,135 1/7/2014
2.0.0 12,428 9/17/2013
1.9.4 61,845 3/21/2013
1.9.3 5,999 2/11/2013
1.9.2 6,828 11/29/2012
1.8.3 6,472 7/3/2012
1.8.2 5,764 5/18/2012
1.8.1 5,996 3/14/2012
1.8.0 5,710 1/27/2012
1.7.1 5,547 12/27/2011
1.7.0 6,703 9/13/2011
1.6.3 5,705 7/21/2011
1.6.2 5,541 6/18/2011
1.6.1 5,647 5/4/2011
1.6.0 6,893 4/5/2011