Commented Issue: Use a Group Managed service account to run a schedule task...
These two ways are not working, here is my test code, I test it on windows server 2012R2:```using System;using System.Runtime.InteropServices;using Microsoft.Win32.TaskScheduler;namespace WrapperDemo{...
View ArticleNew Post: Do I need to dispose all the instances (Task, Trigger, Action, etc)...
on the Example Home page:https://taskscheduler.codeplex.com/wikipage?title=Examples&referringTitle=Documentation I see that only the TaskService need to be disposed. But others classes, for...
View ArticleNew Post: Tick "Run whether user is logged in or not" Programmatically
Would this work in Task Scheduler version 1.0 as well ?
View ArticleNew Post: how to use a Group Managed service account to run a schedule task...
Hi dahall, I tried, your assemblies work well.
View ArticleNew Post: Do I need to dispose all the instances (Task, Trigger, Action, etc)...
No. Those are created and disposed internally. Technically, due to the beauty of garbage disposal in C#, you don't need to manually dispose of anything. However, if you are worried about memory...
View ArticleClosed Unassigned: The system cannot find the path specified. [12350]
Hi,After some changes library cannot get data from remote server. Details: I use win7 and try to get state of task on win2003. TaskService is used with forceV1=true.Code to reproduce:``` using...
View ArticleNew Post: "StartWhenAvailable" not checked in Scheduler
Hey there, First of all, thanks for making this Wrapper. It's amazing. I need to change desktop background every day based on time user picks. If machine is not working I need this task to start after...
View ArticleSource code checked in, #98063
* Fixed problems with Task.Run and RunEx methods * Removed check for password != null when registering a task to allow for cases where password is valid as empty * Version 2.5.17 * Added .NET 4...
View ArticleReleased: Release 2.5.17 (Apr 07, 2016)
Update historyVersion 2.5.17Added back in .NET 4 builds Fixed RegisterTaskDefinition for tasks setting password to null Fixed Task.Run and RunEx methodsVersion 2.5.16Event and Security UI bug fixes...
View ArticleUpdated Release: Release 2.5.17 (Apr 07, 2016)
Update historyVersion 2.5.17Added back in .NET 4 buildsFixed RegisterTaskDefinition for tasks setting password to nullFixed Task.Run and RunEx methodsVersion 2.5.16Event and Security UI bug...
View ArticleNew Post: "StartWhenAvailable" not checked in Scheduler
Close, but you mixed the quick model (using AddTask) with the full control model (which uses TaskDefinition and RegisterTaskDefinition). Your corrected code would be: TaskDefinition td =...
View ArticleUpdated Wiki: Examples
Examples Home Page You can go to these pages for more sample code:Trigger Example CodeAction Example CodeSecurity Explanations and Samples Below are some examples of how to use most of the functions of...
View ArticleNew Post: "StartWhenAvailable" not checked in Scheduler
Thank you so much dahall ! I realized my mistake as well now :) I'm sure this topic will be of use to someone else too. Marked as answer.
View ArticleClosed Issue: Use a Group Managed service account to run a schedule task and...
These two ways are not working, here is my test code, I test it on windows server 2012R2:```using System;using System.Runtime.InteropServices;using Microsoft.Win32.TaskScheduler;namespace WrapperDemo{...
View ArticleClosed Issue: Error using RegisterTaskDefinition on Window10 Professional...
Error using RegisterTaskDefinition on Window10 Professional When calling "RegisterTaskDefinition", the error I am getting is:"Die angegebene Domäne ist nicht vorhanden, oder es konnte keine Verbindung...
View ArticleClosed Issue: System.IO.FileNotFoundException when registering task under 64...
At the moment I'm running into this problem on 64 bit Windows 10 Pro Insider Preview Build 10158. Same call works on 64 bit Windows 8.1 Pro.System.IO.FileNotFoundException, The system cannot find the...
View ArticleClosed Unassigned: Error using RegisterTaskDefinition on Window10...
______Error using RegisterTaskDefinition on Window10 Proffessional______When calling "RegisterTaskDefinition", the error I am getting is:the task xml contains a value which is incorrectly formatted or...
View ArticleUpdated Wiki: Home
This project provides a wrapper for the Windows Task Scheduler. It aggregates the multiple versions, provides an editor and allows for localization.NuGetThis project's assemblies are available via...
View Article