Released: Release 2.2.0 (May 04, 2014)
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.2.0 (May 04, 2014)
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 ArticleCreated Unassigned: I am not able to run Task schedule managed wrapper [11700]
i have paste this in console application using (TaskService ts = new TaskService()){// Create a new task definition and assign properties TaskDefinition td = ts.NewTask();...
View ArticleNew Post: Windows XP SP3 System Account.
I solved my problem following these steps. Now your code works like a charm. But I still have a problem. I have a product that registers a task at install time. How can I figure it out that the task is...
View ArticleCommented Unassigned: I am not able to run Task schedule managed wrapper [11700]
i have paste this in console application``` using (TaskService ts = new TaskService()){// Create a new task definition and assign properties TaskDefinition td = ts.NewTask();...
View ArticleClosed Unassigned: I am not able to run Task schedule managed wrapper [11700]
i have paste this in console application``` using (TaskService ts = new TaskService()){// Create a new task definition and assign properties TaskDefinition td = ts.NewTask();...
View ArticleNew Post: I want create schedule that will run at 3 Pm and 7 pm on same task
scheduler should be start on same task
View ArticleNew Post: I want create schedule that will run at 3 Pm and 7 pm on same task
Daily trigger with a 3pm start time and a repetition of every 4 hours with a 4 hour duration.
View ArticleNew Post: TaskScheduler to access task from a "WORKGROUP" machine
I am using the Win32.TaskScheduler to run Windows Scheduled Tasks from my web application as mentioned in this thread. Now the difficulty I am facing is the machine which has the tasks scheduled is not...
View ArticleNew Post: I want create schedule that will run at 3 Pm and 7 pm on same task
i have written this code dt.StartBoundary = DateTime.Today + TimeSpan.FromHours(23); dt.Repetition.Interval = TimeSpan.FromHours(3); dt.Repetition.Duration = TimeSpan.FromHours(4); it it correct........
View ArticleNew Post: I want create schedule that will run at 3 Pm and 7 pm on same task
and also tell me how can i check next schedule star time
View ArticleNew Post: I want create schedule that will run at 3 Pm and 7 pm on same task
also tell me How can i check next schedule start time
View ArticleNew Post: User Login And Logout
i want start and stop task scheduler when user is Login then sheduler should be star as par given start time and when user is Logout then scheduler should be stop as par given duration time. please sir...
View ArticleNew Post: I want create schedule that will run at 3 Pm and 7 pm on same task
This is the correct code:// Create a daily trigger that will start running today at 3pm var dt = new DailyTrigger() { StartBoundary = DateTime.Today.AddHours(15) }; // Have that trigger repeat 4 hours...
View ArticleNew Post: TaskScheduler to access task from a "WORKGROUP" machine
It will work, but the account running the code (usually a specific IIS account) needs to be a member of the Backup Operators or Administrators group. If this account has those rights, then when...
View ArticleNew Post: User Login And Logout
I am assuming you mean start/stop a task and not start/start the Task Scheduler. You will use a LogonTrigger with a blank UserId (so it affects all local users) at start and then you will need to...
View ArticleNew Post: Ports needed for Task Scheduler Managed Wrapper
What ports need to be opened in order for this library to be fully functional? If I open up all ports on my server, everything works. If I do not open up all ports, I get "The request is not supported"...
View ArticleNew Post: Ports needed for Task Scheduler Managed Wrapper
By using wireshark, I have concluded TCP ports 135 and 49155 are needed.
View ArticleNew Post: I want create schedule that will run at 3 Pm and 7 pm on same task
it work fine thanks dahall ......
View Article