how to write a script which canrun my dot net exe at regular interval
-
Hi, i want to write a script which can run my dot net exe at regular interval, without manual intervention. Please help me as I am very new to this kind of work. Is it possible to write such a program in dot net itself? I am using the following: Platform: Windows XP framework: .net 2005, language: C# back end - Sql Server 2005. Thanks in Advance for your help!! With Regards Puneet
-
Hi, i want to write a script which can run my dot net exe at regular interval, without manual intervention. Please help me as I am very new to this kind of work. Is it possible to write such a program in dot net itself? I am using the following: Platform: Windows XP framework: .net 2005, language: C# back end - Sql Server 2005. Thanks in Advance for your help!! With Regards Puneet
Why write a script? Windows XP has a perfectly good task scheduler. Haven't got any XP machines around anymore, but you should be able to find it somewhere in administrative tools or the control panel.
-
Hi, i want to write a script which can run my dot net exe at regular interval, without manual intervention. Please help me as I am very new to this kind of work. Is it possible to write such a program in dot net itself? I am using the following: Platform: Windows XP framework: .net 2005, language: C# back end - Sql Server 2005. Thanks in Advance for your help!! With Regards Puneet
Puneet Bhatnagar wrote:
i want to write a script which can run my dot net exe at regular interval, without manual intervention
As the other responder suggested, Use Task Scheduler to run it every particular interval of time. Start-> Programs-> Accessories-> System Tools-> Scheduled Tasks.
Puneet Bhatnagar wrote:
Is it possible to write such a program in dot net itself?
You need to develop a windows service to do that. (Now that you have written the code, it won't take much time to develop the windows service application). More information: Here[^]! Or search Google/Bing for "Windows Service", there are lots of articles.
..Go Green..