Commented Unassigned: Inheritance security rules violated while overriding...
I'm trying to write a NAnt extension that uses this library but I get this exception on my first method that loads the taskscheduler objects.System.TypeLoadException: Inheritance security rules...
View ArticleCommented Unassigned: Inheritance security rules violated while overriding...
I'm trying to write a NAnt extension that uses this library but I get this exception on my first method that loads the taskscheduler objects.System.TypeLoadException: Inheritance security rules...
View ArticleNew Post: Edit Task
How to get the hum trigger replay value , when recursion for weekly?
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.This project's assemblies are available via NuGet....
View ArticleCommented Unassigned: Inheritance security rules violated while overriding...
I'm trying to write a NAnt extension that uses this library but I get this exception on my first method that loads the taskscheduler objects.System.TypeLoadException: Inheritance security rules...
View ArticleReleased: Release 2.3.1 (Mar 23, 2015)
Some bug fixes, better support for Windows 8 additions to core library, addition of Fluent syntax, and crontab syntax, since the 1.9.4 release. Since 2.0.3 release, added support for .NET 2.0 and 4.0,...
View ArticleUpdated Release: Release 2.3.1 (Mar 23, 2015)
Some bug fixes, better support for Windows 8 additions to core library, addition of Fluent syntax, and crontab syntax, since the 1.9.4 release. Since 2.0.3 release, added support for .NET 2.0 and 4.0,...
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 ArticleNew Post: Edit Task
Can you clarify please? I'm not sure what a "hum trigger" is nor a "replay value" nor "recursion for weekly".
View ArticleNew Post: Edit Task
Descupe Google Translate was not as helpful this time . Basically what I need is to get the value of the highlighted field in the image http://i.imgur.com/vYfxKG5.jpg I tried using the command...
View ArticleNew Post: An exception of type 'System.Runtime.InteropServices.COMException'...
I use TaskEditDialog. On Window 2008 when I try to open "Change User or Group" dialog I get message:"the program cannot open the required dialog box because it cannot determine whether the computer...
View ArticleNew Post: An exception of type 'System.Runtime.InteropServices.COMException'...
Also the dialog allows change only to current user. In other cases after ok pressing It always generate unhandled exception:System.UnauthorizedAccessException: Access is denied. (Exception from...
View ArticleNew Post: Edit Task
You are looking for a WeeklyTrigger (see Documentation here) where you will set the DaysOfWeek property for all the days of the week needed and the WeeksInterval property for the interval.
View ArticleNew Post: An exception of type 'System.Runtime.InteropServices.COMException'...
The first error is due to a problem with how that particular system is representing the computer to the domain. The prompt you get is from Windows. The COMException generated and not handled is a bug...
View ArticleSource code checked in, #94917
* Fixed error handling for user dialog * Changed version to 2.3.2
View ArticleNew Post: Edit Task
Setting this value I found in the documentation , but I need is go the other way . How to rebuild value of a task already created ?
View ArticleNew Post: [Solved] Edit Task
Task t = taskService.GetTask("MyTaskName"); // Assume there is only a single trigger WeeklyTrigger wt = t.TaskDefinition.Triggers[0] as WeeklyTrigger; if (wt != null) return wt.WeeksInterval;
View Article