Commented Unassigned: Task.SetSecurityDescriptorSddlForm and...
The methods Task.GetSecurityDescriptorSddlForm and Task.SetSecurityDescriptorSddlForm accept a parameter of type AccessControlSections. The value of this parameter is passed to...
View ArticleNew Post: trigger when user is not logged in
Does someone knows is there a possibility do create tasks that will fire even when user is not logged in? There is such option in windows task scheduler, but i cant find it in the wrapper. Situation...
View ArticleNew Post: Weird exception
If you callt.RegisterChanges(); instead of calling RegisterTaskDefnition on the last row, do you get the same error?
View ArticleNew Post: trigger when user is not logged in
There a couple of ways: 1) You can define a BootTrigger using an account that has Administrator rights or SYSTEM. This will run every time the system is booted. 2) Use any trigger, but register with an...
View ArticleNew Post: How to disable "stop task if..."
This is fixed in release 2.0.4. Thank you for identifying the problem.
View ArticleNew Post: trigger when user is not logged in
Thanks, it worked, i used ts.GetFolder("ProgressDatabaseCleaner").RegisterTaskDefinition(@"ProgressDataBaseCleaner1", td,TaskCreation.CreateOrUpdate, "SYSTEM", null, TaskLogonType.ServiceAccount);
View ArticleSource code checked in, #88981
- Decided to rev to 2.1.0 due to the potentially breaking changes to the SDDL methods - Fixed some problems with controls not working in the designer - Fixed a problem with logic on disabling available...
View ArticleNew Post: Create daily 9h Task Schedule in Windows 7
Hi guys, I am trying to create a schedule task at the installation time on a Windows 7 32bits, but there is something wrong because it returns me an exception "LogonType". Another thing, I want to...
View ArticleNew Post: Deletion/Unregister Task
This library has been great for scheduling & modifying tasks in Windows Scheduler, but I've run into a problem that I could not find a method for, it may not exist in your library. How can a...
View ArticleNew Post: Deletion/Unregister Task
You found it. Removing a task is done through the TaskFolder.RemoveTask method. If a folder has not been specified when registering a task, then it will be found in the root folder. TaskService has a...
View ArticleNew Post: Create daily 9h Task Schedule in Windows 7
// Get the service on the local machine using (TaskService ts = new TaskService()) { // Create a new task definition and assign properties TaskDefinition td = ts.NewTask();...
View ArticleNew Post: Create daily 9h Task Schedule in Windows 7
First of all thanks for your quick replay Dahall, However the problem persists, everytime I try to depoy the setup on a Win7 machine it gives me an exception "Exception: (41,4):LogonType: " nothing...
View ArticleNew Post: Deletion/Unregister Task
Perfect. Figured this out a bit before you posted, but thanks for confirming!
View ArticleNew Post: Weird exception
It appears there is no way to create scheduled tasks from asp.net application
View ArticleCreated Unassigned: Weekly Wed Check is not recording a change [11572]
The code for weeklyWedCheck_CheckedChanged does not have an implementation.Line 67 should be:SetWeeklyDay(sender as CheckBox, DaysOfTheWeek.Wednesday);
View ArticleClosed Unassigned: Weekly Wed Check is not recording a change [11572]
The code for weeklyWedCheck_CheckedChanged does not have an implementation.Line 67 should be:SetWeeklyDay(sender as CheckBox, DaysOfTheWeek.Wednesday);Comments: Thank you for not only finding the...
View ArticleCreated Unassigned: Behavior of "Restart if the idle state resumes" does not...
Behavior of "Restart if the idle state resumes" does not match Windows Task Scheduler. The checkbox and text are enabled by default without "Start the task only if the computer is idle for:" being...
View ArticleCreated Unassigned: Checkbox for "Start only if the following network...
Checkbox for "Start only if the following network connections is available" is not checked when editingChanges are saved to the task but the checkbox state is not read when opening the task. It is...
View ArticleClosed Unassigned: Checkbox for "Start only if the following network...
Checkbox for "Start only if the following network connections is available" is not checked when editingChanges are saved to the task but the checkbox state is not read when opening the task. It is...
View Article