New Post: implementing and ITaskHandlerStatus
i'm trying to schedule a com object implementing ITaskHandler interface i've download your template project "COMTask" Registering the task with this code everything works wellTaskService ts = new...
View ArticleNew Post: implementing and ITaskHandlerStatus
The ITaskHanderStatus interface is exposed through the StatusHandler property of TaskHandlerBase. Suppose you had a task that needed to write information to a log file every few seconds and terminate...
View ArticleNew Post: TaskDefinition wil not run when not (live) connected to the sever
I'dp have the following issue. In a (webapplication) I create a taskdefinition var cmd = @"restart.cmd"; var taskName = string.Format("restart_{0}", DateTime.Now.ToString("yyyyMMMMdd_HHmm"));...
View ArticleNew Post: Why not return a Null Object?
Imagine this code...Function checkIfTaskFolderExists(folder As String) As Boolean Dim taskService As New TaskService If taskService.GetFolder(folder) IsNot Nothing Then Return True Else Return False...
View ArticleNew Post: Why not return a Null Object?
This wrapper attempts to map to the Microsoft base library wherever possible. This is one of those instances. Changing at this point, after almost a decade of a released product, would constitute a...
View ArticleNew Post: TaskDefinition wil not run when not (live) connected to the sever
I guess my first question is why even use tasks? You are effectively just launching a process immediately either using a trigger or forcing the Run of the task. Seems like you are adding complexity...
View ArticleCreated Unassigned: Separate out scheduler UI into user control [12115]
The UI for configuring the schedule of a task (once/daily/weekly/monthly) is very nice. I'd like it to be a user control, please. That way I could use it in a simpler interface, that is without the...
View ArticleCommented Unassigned: Separate out scheduler UI into user control [12115]
The UI for configuring the schedule of a task (once/daily/weekly/monthly) is very nice. I'd like it to be a user control, please. That way I could use it in a simpler interface, that is without the...
View ArticleNew Post: Creation of Task on Windows 7 remotely using Managed Wrapper.
While creating a remote task, I am getting error message "(18,8):LogonType:". What could be the issue? I am using logon type 'TaskLogonType.S4U' to create the task. Please help.
View ArticleSource code checked in, #96085
* Separated out new CalendarTriggerUI control from TriggerEditDialog * Fixed bug in drop-down checked listbox items with multi-select * Fixed bug in CustomTrigger editor view * Added ICalendarTrigger...
View ArticleCommented Unassigned: Separate out scheduler UI into user control [12115]
The UI for configuring the schedule of a task (once/daily/weekly/monthly) is very nice. I'd like it to be a user control, please. That way I could use it in a simpler interface, that is without the...
View ArticleNew Post: Creation of Task on Windows 7 remotely using Managed Wrapper.
This is usually either that the account used when creating the TaskService object doesn't have rights to create the task with an S4U user, you haven't supplied a username in the RegisterTaskDefiniton...
View ArticleCommented Unassigned: Separate out scheduler UI into user control [12115]
The UI for configuring the schedule of a task (once/daily/weekly/monthly) is very nice. I'd like it to be a user control, please. That way I could use it in a simpler interface, that is without the...
View ArticleCommented Unassigned: Separate out scheduler UI into user control [12115]
The UI for configuring the schedule of a task (once/daily/weekly/monthly) is very nice. I'd like it to be a user control, please. That way I could use it in a simpler interface, that is without the...
View ArticleSource code checked in, #96186
* Fixed bugs in new CalendarTriggerUI * Allowed for null value in Trigger.CopyProperties method
View ArticleCommented Unassigned: Separate out scheduler UI into user control [12115]
The UI for configuring the schedule of a task (once/daily/weekly/monthly) is very nice. I'd like it to be a user control, please. That way I could use it in a simpler interface, that is without the...
View ArticleNew Post: How to get all runtimes from a task ( planned and manuel triggered)
Hello, i want to get a list of all runtimes from a task. I have the following situation: 10:10 o'clock Task was planned10:15 o'clock manuel triggered 10:20 o'clock manual triggered With the method...
View ArticleCommented Unassigned: Separate out scheduler UI into user control [12115]
The UI for configuring the schedule of a task (once/daily/weekly/monthly) is very nice. I'd like it to be a user control, please. That way I could use it in a simpler interface, that is without the...
View ArticleNew Post: How to get all runtimes from a task ( planned and manuel triggered)
This is likely due to how Microsoft implemented the GetRunTimes method in the native COM library. I'm guessing they go to the Event Log and look for entries and chose to skip manually run entries. You...
View Article