Tagged Questions

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 ...
2
votes
2answers
443 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
1answer
3k views

How to run a Windows 2008 task from the scheduler with “interact with desktop”

I have a small .NET app that I'm running under Windows 2008 Server via the Task Scheduler. This application needs to open an excel file and then save it as csv. The task fails when I try to open the ...
0
votes
0answers
105 views

Windows Task Scheduler running application but cannot send email

In my windows task scheduler, I have scheduled a task to run a c# console application executable on a daily basis. This application sends some data to the database and then sends an email. When I run ...
0
votes
1answer
27 views

Creating a Task scheduler for Database status change

In my application a registered user's profile should expire after 3 months from the registration date. I need to check and set the status of users to expired in DB every day at midnight. How can I ...