New Post: About V2
This is my code:ts.AddTask(@"HomeBot\Task0", new TimeTrigger(DateTime.Now.AddMilliseconds(15)), new ShowMessageAction("gdgd","Gdgd")); Help me.
View ArticleNew Post: Is possible to run existing task with argument?
If you want to run an existing task (you set it up manually on the remote computer and did not use the Task Scheduler Manage Wrapper in code to do this) be sure to put in $(Arg0) as the (only) argument.
View ArticleNew Post: DeleteExpiredTaskAfter?
Hello dahal, I'm so stupid .... OMG :( It's working right now. The "NextRunTime" will show the time when the Task will be removed. Whatever ... thank you for your support. Kind regards .... Kai
View ArticleNew Comment on "Examples"
How do I get the task history from a remote machine that requires authentication? The only relevant constructor parameter you take in TaskEventLog is "Machine" which just throws me a security error...
View ArticleNew Post: Remote TaskHistoryLog
I need to get to the task history from a remote computer. How would I go about doing that? The constructor on TaskHistoryLog has a parameter for Machine, but not username or password (like the task...
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 ArticleNew Post: SecurityException when enumerating V1 tasks and displaying tasks'...
I am facing a weird issue. I am trying to enumerate tasks in multiple remote servers (V1 and V2) and then display the tasks in a datagrid. This issue happens when I am connecting to a V1 server (using...
View ArticleNew Post: SecurityException when enumerating V1 tasks and displaying tasks'...
First, try putting brackets in around the scope of your first "using" statement. You can also do the same with the TaskService instance. You could do this by doing:List<TaskInfo> taskList = new...
View ArticleNew Post: SecurityException when enumerating V1 tasks and displaying tasks'...
Localizing the TaskService call works like a charm. Thanks a ton! I am still unsure why this would happen only on V1 calls though - any idea there?
View ArticleNew Post: SecurityException when enumerating V1 tasks and displaying tasks'...
My only guess is that there is something different in the way .NET is releasing the underlying COM objects for the two libraries is different.
View ArticleNew Post: ASP.NET: Run Task as IIS 7 Application Pool Identity
Hi there I'm working on a ASP.Net application which allows users to schedule certain tasks. So far I have created a GUI to configurate the triggers provided by this library and the tasks can be added...
View ArticleNew Post: ASP.NET: Run Task as IIS 7 Application Pool Identity
_ _ By the way thats the complete Xml:<?xml version="1.0" encoding="UTF-16"?> <Task version="1.2" xmlns="http://schemas.microsoft.com/windows/2004/02/mit/task"> <RegistrationInfo>...
View ArticleNew Post: ASP.NET: Run Task as IIS 7 Application Pool Identity
See information in post https://taskscheduler.codeplex.com/discussions/84859.
View ArticleSource code checked in, #86349
* Added Fluent methods for creating tasks. * Began work on adding crontab syntax for scheduling
View ArticleCreated Unassigned: Unable to create tasks on Windows 2008 server [11187]
I am using a mvc application to manage windows tasks on a Windows 2008 server. MVC app and Windows tasks are on the same server, but unable to create it through App, If I run the MVC app in Visual...
View ArticleClosed Unassigned: Unable to create tasks on Windows 2008 server [11187]
I am using a mvc application to manage windows tasks on a Windows 2008 server. MVC app and Windows tasks are on the same server, but unable to create it through App, If I run the MVC app in Visual...
View ArticleSource code checked in, #86451
* More work on using cron strings to add triggers (now functional with limitations)
View ArticleSource code checked in, #86459
* Breaking Change: Changed type of TaskRegistrationInfo.URI property from System.Uri to String to accomodate Microsoft's use of the property in Windows 8. * Fixed problem in Windows 8 for...
View ArticleSource code checked in, #86477
* Exposed properties of existing CustomTrigger instances
View Article