New Post: Task Scheduler TaskRunLevel
It's Windows 7. The entire code is below: using (TaskService ts = new TaskService()) { // Create a new task definition and assign properties if (schday == "ALL") { try { string userId =...
View ArticleNew Post: Reading fields from Actions
I am trying to get the fields from the Actions of a task, but I'm not finding how to access them. Here is a small code sample: Dim Actions As Microsoft.Win32.TaskScheduler.ActionCollection =...
View ArticleNew Post: Reading fields from Actions
Sorry, that was too easy dim ea as ExecAction = act Thanks,
View ArticleUpdated Wiki: Home
Project DescriptionThis project provides a single assembly wrapper for the 1.0 and 2.0 versions of Task Scheduler found in all Microsoft operating systems post Windows 98. It simplifies the coding,...
View ArticleSource code checked in, #80785
* Fixed problem with warnings having title and message strings mixed * Fixed problem with account validation when Principal.ProcessTokenSidType * Hid new tabs by default
View ArticleReleased: Release 1.9 (Oct 29, 2012)
Many bug fixes, full support for Windows 7 and Windows 8 additions to core library, and an enhanced editor to allow editing of all properties, since the 1.8.3 release. See Source Code for full details...
View ArticleUpdated Release: Release 1.9 (Oct 29, 2012)
Many bug fixes, full support for Windows 7 and Windows 8 additions to core library, and an enhanced editor to allow editing of all properties, since the 1.8.3 release. See Source Code for full details...
View ArticleUpdated Wiki: Documentation
There is a help file included with the download that provides an overview of the various classes. The Microsoft MSDN documentation provides an excellent overview of the Task Scheduler along with...
View ArticleUpdated Wiki: Documentation
There is a help file included with the download that provides an overview of the various classes. The Microsoft MSDN documentation provides an excellent overview of the Task Scheduler along with...
View ArticleNew Post: Unable to create tasks from ASP.NET under W2008
Hello, whenever I try to create tasks from an ASP.NET web app on a W2008 R2 server, I receive this exception: Â System.Runtime.InteropServices.COMException: (39,8):Command: Â The code I wrote...
View ArticleNew Post: Unable to create tasks from ASP.NET under W2008
Update: I was able to solve my problem moving from RegisterTaskDefinition to RegisterTask method (Xml definition).Â
View ArticleSource code checked in, #80839
* Added an event detail viewer to the TaskPropertiesControl mimicking the one from Windows
View ArticleSource code checked in, #80875
* Added EventViewerDialog and continued work on History tab updates
View ArticleNew Comment on "Examples"
I have a question, how can I make this application grab scheduled tasks from another server on the network and allow people to run the tasks on demand?
View ArticleNew Comment on "Examples"
Also, is this library only for Desktop/Console apps? I'm trying to find one that works with asp.net.
View ArticleNew Comment on "Examples"
>>dbrewerton: The core library (not the UI library) can be used within ASP.NET but you'll need to be aware of execution permissions. Check the Discussions area for more information. To get and...
View ArticleUpdated Wiki: Examples
Below are some examples of how to use most of the functions of the library: Connecting to a remove server Using the editor Simple example Enumerate all tasks Complex example Task history example...
View ArticleReleased: Release 1.9 (Oct 29, 2012)
Many bug fixes, full support for Windows 7 and Windows 8 additions to core library, and an enhanced editor to allow editing of all properties, since the 1.8.3 release. SeeSource Code for full details...
View ArticleUpdated Release: Release 1.9 (Oct 29, 2012)
Many bug fixes, full support for Windows 7 and Windows 8 additions to core library, and an enhanced editor to allow editing of all properties, since the 1.8.3 release. See Source Code for full details...
View ArticleNew Post: How to auto-delete a task after running once?
I want to create a task that does the following:- Run once immediately- Self-delete task after runningHow to implement this? I looked around the documentation, but couldn't find one. Appreciate any...
View Article