New Post: Priority property
How to use the ITaskSettings::Priority property API?: http://msdn.microsoft.com/en-us/library/windows/desktop/aa381855(v=vs.85).aspx
View ArticleNew Post: Creating Daily Triggers with multiple start time using Taskservice 2.0
Hi, how can we create a daily trigger with multiple start time with taskservice.
View ArticleNew Post: Priority property
This is available via the TaskDefinition.Settings.Priority property.
View ArticleNew Post: Creating Daily Triggers with multiple start time using Taskservice 2.0
Use two daily triggers within the same task.
View ArticleNew Post: Task does not start if scheduled start is missed.
Hi, I create a task that should start on a given date. Everything works fine as long as i don't miss a task (for example: computer was turned off the day, that the task should have started). Maybe i...
View ArticleNew Post: Task does not start if scheduled start is missed.
Your TimeTrigger instance needs to either set the EndBoundary property or change the RestartInterval to TimeSpan.Zero (for infinite) as per the conditions on the link you provided. You may also want to...
View ArticleNew Post: Creating Daily Triggers with multiple start time using Taskservice 2.0
In taskscheduler service (microsoft.win32.taskscheduler.dll) does not have a daily trigger constructor that accepts starttime, by default the start time gets sets to current time.I tried creating...
View ArticleNew Post: Creating Daily Triggers with multiple start time using Taskservice 2.0
StartBoundary is a property on all triggers and can be set upon trigger creation. For example, if you wanted to create task that executes every day from this point forward at 2:00 a.m. and 2:00 p.m.,...
View ArticleNew Post: TaskCreation.CreateOrUpdate does not work on XP
I am facing a problem while editing tasks on a XP machine. While editing a task, i register it using the flag TaskCreation.CreateOrUpdate but after the update find that always a new task gets created...
View ArticleNew Post: TaskCreation.CreateOrUpdate does not work on XP
Under V1 of the library (XP and earlier), the CreateOrUpdate flag get interpretted by the library as a pure Save of a file that will not fail if the task already existed. What you're seeing is typical...
View ArticleNew Post: "Run with highest privileges" not getting checked
The code posted by dahall works fine. To see the option as "selected", you have to reload Task Scheduler window by pressing F5. Switching from an activity row to another, the window keep showing the...
View ArticleNew Post: Cannot register task using standard user account
Hi all, I'm reading this post since I'm having "Access is denied" on RegisterTaskDefinition, launching my application from a domain user which belongs to Administrators group on the machine (I'm...
View ArticleNew Post: Cannot register task using standard user account
jeanie77: I just ran the following code without a problem logged into a domain account which is in my local Adminstrators group and had no errors. I have to assume there is something about your runtime...
View ArticleNew Post: Cannot register task using standard user account
Hi Dahall, thank you for your reply. Yes, I have UAC enabled (Default - Notify me only when programs try to make changes to my computer) and probably that's the reason why I cannot register using the...
View ArticleNew Post: Strange Behaviour - DisplayName and FormatDescription
Hi there, I'm running into an issue: Two systems, both Win 7 x64... Machine 1: When a the project is compiled against the .Net v4 framework and iterating through a list of events I've queried, both...
View ArticleNew Post: Strange Behaviour - DisplayName and FormatDescription
This is only a guess as I cannot verify it: The TaskSchedulerEditor assembly is compiled against .NET 3.5. Is it possible that on Machine 1, you only have the .NET 3.5 library installed and on Machine...
View ArticleReviewed: Release 1.8.3 (Oct 17, 2012)
Rated 5 Stars (out of 5) - Easy to use, polished, fits well with .NET.
View ArticleNew Post: Task Scheduler TaskRunLevel
I am trying to create a scheduled task using Win32.TaskScheduler. I need to create it at the logon event (the code below is called at logon). The user who is creating the task (always just a domain...
View ArticleNew Post: Task Scheduler TaskRunLevel
I think it is maybe a problem with the permissions set to the domain user on the server and a way around it might be to create a unique user account on the domain for task scheduler to use and then...
View ArticleNew Post: Task Scheduler TaskRunLevel
Which operating system are you running this on and will you provide the constructor in your code for TaskService? I think this may be a problem with the version of the underlying COM library.
View Article