Tagged Questions
21
votes
5answers
15k views
Recommend a C# Task Scheduling Library
I'm looking for a C# library, preferably open source, that will let me schedule tasks with a fair amount of flexibility. Specifically, I should be able to schedule things to run every N units of time ...
10
votes
6answers
12k views
How can I raise an event every hour (or specific time interval each hour) in .NET?
I'm working on a little web crawler that will run in the system tray and crawl a web site every hour on the hour.
What is the best way to get .NET to raise an event every hour or some other interval ...
5
votes
2answers
2k views
TaskCreationOptions.LongRunning option and ThreadPool
TPL uses Task Schedulers to coordinate tasks. According to official document, default task scheduler uses Thread Pool, but if TaskCreationOptions.LongRunning option is presented then it will create a ...
4
votes
2answers
75 views
Oracle error in Task Scheduler
We have a C# program which is scheduled to run in Task Scheduler on Windows Server 2003, designed to delete out-of-date files in a folder based on information drawn from multiple Oracle databases. I ...
3
votes
2answers
187 views
Add a scheduled task at the setup?
I've a little c# application, and I have to create a scheduled task for this application.
I have a Setup which installs the application, and the best case will be that I can set this windows ...
2
votes
2answers
335 views
Best Scheduler for .NET Application? [closed]
I'm trying to determine what would be a good Process Scheduler for .NET applications, so far I have only looked into Quartz.NET. Are there any viable alternatives and what are the tradeoffs when using ...
2
votes
2answers
450 views
How to distinguishing between Task Scheduler 1.0 and Task Scheduler 2.0?
I have an C# application that uses Task Scheduler 1.0 (.job files).
I need to extend the application to support Task Scheduler 2.0 (xml).
I need some code, that is able to tell me what kind of T.S. ...
2
votes
2answers
468 views
Task (appointment) scheduling library in C#?
Is there any good task scheduling library in C#/.NET ?
I don't mean task in the sense of 'print job', I mean task in the business sense, like you schedule your tasks in Outlook.
Preferably with ...
2
votes
3answers
2k views
Server 2008 Task Scheduler Mapped Drive Access C#
I'm trying do get Server 2008's Task Scheduler to run a C# console app which backs up data to a mapped backup drive somewhere on FastHosts network.
I've written a test app which simply does this
...
1
vote
9answers
232 views
C# - Task Scheduling
I am using Asp.Net - Web Forms - Framework 3.5
I want to send emails to web-site users at 12am mid night. I have made a class method that sends emails but what is best way to auto execute it at 12 ...
1
vote
2answers
415 views
Can't schedule Program with Excel Interop
I have developed a console program in C# .NET, that uses Excel Interop.
The program works just fine on my development machine and in the windows server 2008, if I run it from command line.
When I try ...
1
vote
1answer
541 views
How to change the memory priority of a scheduled task?
When starting my program without Task Scheduler, it has memory priority of 5 like all other programs running in my system (Windows 7).
But when running under Task Scheduler, it has memory priority of ...
1
vote
0answers
307 views
How to eliminate Server 2008/Vista/Win7 Task Scheduler Interop warning?
I am using Interop.TaskScheduler.dll in a C# Windows Application. - NOTE: This is the evolved task scheduler from Server 2008/Vista/Win7 not the one from before.
I've managed to set it up and it ...
1
vote
1answer
1k views
Windows 2008 Task Scheduler Problem
I've created simple .NET 2.0 Console application. Reads DB, sends emails and writes result to subfolder named "logs" as a .TXT file.
Application works when i run it manually.
But task scheduler can ...
1
vote
4answers
2k views
Is there one API to handle the Task Scheduler in XP and Vista? [closed]
I have a couple applications that I would like to be able to add scheduled tasks from within them. I've been Googling for how to add tasks in both XP and Vista. Apparently, Vista has a new Task ...
0
votes
3answers
66 views
C# - scheduling a task to run every X minutes
I am using a TaskFactory to manage my program's tasks. I would like to add a task to the queue that will start running after X minutes. Can it be done using .Net's standard tools or do I need to use a ...
0
votes
0answers
87 views
Changing run time of already scheduled tasks in windows task scheduler
I have problem with modifying tasks which already exists on machine. I'm trying to do this with generated interop interfaces from C# (Interop.TaskScheduler.dll generated from system32/taskschd.dll).
...
0
votes
2answers
157 views
Getting a TaskScheduler/SynchronizationContext to execute on a specific thread
Consider the following code for a WPF ViewModel:
protected void Init()
{
Debug.WriteLine(string.Format("ChangeManager init on thread={0}", Thread.CurrentThread.ManagedThreadId));
...
0
votes
3answers
72 views
Windows system login credentials
i am developing a scheduler in which i want to match the username and password entered by the user with the system's login credentials in c#.Is there any way to do this.
0
votes
1answer
385 views
How to programmatically import the task scheduler in Windows Server 2008
In Windows application, when I import the task scheduler (.job format) in Windows XP machine it is working fine. But when I am trying to import the task scheduler in Windows Server 2008 it is not ...
0
votes
1answer
460 views
Task-scheduler running on Win 2003/2008 server: windows service or alternative?
I am developing an application which is web-based (asp.net MVC).
The user configures reminders using the web interface so that other users can be notified when something has to be done, in the future.
...
0
votes
3answers
209 views
Problem with Windows XP scheduler calling C# app requiring passing of variable
I have a C#.net app I need to run off a computer. It has to be scheduled. I am using Windows XP Professional and the app is in C#.net. I have attempted to schedule the job, but I think my syntax is ...
0
votes
2answers
508 views
.NET processes in Task Scheduler
I have a program that executes another program and the main program continues when that program is finished.
Process p = Process.Start("program2.exe");
while (!p.HasExited)
Thread.Sleep(10000);
...
0
votes
2answers
992 views
C# task scheduler query
Hi I have developed a scheduler sometime back for an ASP.Net site using cache expiration callbacks. I have the budget now to move the site to a dedicated server so I have written the scheduler as a ...
0
votes
3answers
486 views
Catch tasks from windows task scheduler in a .net app
I have a program that is running in the background, this program has to be notified when a specific windows event is occurring.
I know the name and id for the event and i know how to schedule an ...
-4
votes
0answers
27 views
which work well with this schedule control?
I would like to implement schedule control something like the link attached below. However I dun have idea how to implement this in asp.net by using c#. I doubt with this either using repeater or ...