I have created a C# program to perform input output operations in windows. I want that program to be invoked at specified time interval e.g. (9:30AM-11:00AM) everyday. How can we achive this?
Asked
Active
Viewed 42 times
0
-
2a windows scheduled task? – Mike Corcoran Jul 15 '15 at 15:33
-
If your application is constantly running, or is running as a windows service, use a `Timer`. https://msdn.microsoft.com/en-us/library/system.timers.timer(v=vs.100).aspx – cdsln Jul 15 '15 at 15:34
-
Another alternative dupe http://stackoverflow.com/questions/390307/windows-service-vs-scheduled-task – Jul 15 '15 at 15:36