Closed Unassigned: Opening TaskEditDialog is really slow (~20sec) [11441]
The constructor of the TaskEditDialog takes quite long to finish. I tried to debug it seems that the constructor of the TimeSpanPickes are the problem. When creating the TimeSpanPicker some regexp is...
View ArticleClosed Unassigned: TaskScheduler Version seems to be incorrect on Win2012R2...
When creating a new Showing the TaskEditor with an existing TaskDefinition the "Configure for:" shows an empty ComboBox. The TaskDefinition Settings say it is Compatible with V2_2 but the TaskServer...
View ArticleUpdated Wiki: Examples
Below are some examples of how to use most of the functions of the library:Connecting to a remove serverUsing the editorSimple exampleEnumerate all tasksComplex exampleTask history exampleOn all these...
View ArticleClosed Issue: how to get task from remote server [10350]
I want to call remotely windows task scheduler for this i am using Microsoft.Win32.TaskScheduler.dll and created object of TaskService class like```TaskService 01_server =...
View ArticleCommented Issue: Getting COMExcpetion when attempting to register changes in...
I've create a task using this library, that worked.Now when I use the TaskEdit dialog in the following way:```Using D As New TaskEditDialog() Using Tsk As Task = ts.GetTask("\MyTasks\Task1") D.Editable...
View ArticleCommented Unassigned: Getting operation failed when trying to update [11315]
The task scheduler keeps returning the operation failed. Please copy the information below and provide it to your system administratorbut there is no information below to submit to the system...
View ArticleClosed Unassigned: "Error The type...
Hello,I am not sure if I should be posting this under issue, but it seems right.I would like to use your wrapper for a project of mine, but something weird is happening when I try to run it. I am using...
View ArticleClosed Unassigned: Maximum length of Command parameters in Windows 8...
I have a console application that takes input command line arguments. I have to schedule this task on Windows 8 using Win32.TaskScheduler or directly from Windows 8 Task Scheduler . The problem is...
View ArticleCommented Unassigned: RegisterTaskDefinition() with TaskCreation.ValidateOnly...
I noticed a strange error today when attempting to use the RegisterTaskDefinition() method from the TaskFolder class. If I use this overload:```RegisterTaskDefinition(string path, TaskDefinition...
View ArticleCommented Unassigned: RegisterTaskDefinition() with TaskCreation.ValidateOnly...
I noticed a strange error today when attempting to use the RegisterTaskDefinition() method from the TaskFolder class. If I use this overload:```RegisterTaskDefinition(string path, TaskDefinition...
View ArticleCommented Unassigned: RegisterTaskDefinition() with TaskCreation.ValidateOnly...
I noticed a strange error today when attempting to use the RegisterTaskDefinition() method from the TaskFolder class. If I use this overload:```RegisterTaskDefinition(string path, TaskDefinition...
View ArticleNew Post: COMException when calling FindAllTasks on IIS
What this is saying is that there are settings in the task that will allow it to only be consumed by a Windows 7 (1.3) native library and that you are on 1.2 (Vista or equivalent server). One thing you...
View ArticleSource code checked in, #90120
* Updated TaskRights enum with best guesses * Added Task.Folder and TaskFolder.Parent properties to get the parent instance for each
View ArticleNew Post: Getting error when RegisterTaskDefinition again
Hello, I am using the task scheduler to start a little program which do some database work for me. A service starts this task with an timer. If the timer is lower than the old, the newer will be used....
View ArticleNew Post: Getting error when RegisterTaskDefinition again
Just to be clear, this same code segment is called both times (first successfully and second failing), and the service that calls this code segment is the same and is running under the same user...
View ArticleNew Post: Getting error when RegisterTaskDefinition again
By the way, the error you are getting typically means that there is a problem with the command-line path you are supplying to the ExecAction. Check to make sure it is not blank or corrupted on your...
View ArticleNew Post: Getting error when RegisterTaskDefinition again
Hi, thanks for the answer. It was a corrupted ExecAction. Dont know why, but in the second call the static var WORKER_ACTION is empty... I change the code and declare this var just before i call the...
View ArticleNew Post: Task History Control Activate Issue
I have a task history control on a form with a task list view. I've included a refresh option on the task list to try and update the task history. When the form first loads and fires the .activate it...
View ArticleSource code checked in, #90130
* Added ability to maintain EmailAction and ShowMessageAction under Win8 where they have been deprecated (converts to powershell script and uses ExecAction) * Added ability to convert EmailAction and...
View ArticleNew Comment on "Examples"
Hi, I am using some part of the above code if (preWin7) { // Create a trigger that will fire on a system security event EventTrigger eTrigger = (EventTrigger)td.Triggers.Add(new EventTrigger());...
View Article