Reputation: 107
I am writing a backup process.
Step1: User selects 3 times (Tuesday 1am,3am,10am or Everyday 1am,3am,10am)
Step 2: The application should check the time settings and start the backup process automatically.
Is it possible to start the backup process if the application is not running?
Upvotes: 0
Views: 157
Reputation: 15861
IMO you can use Windows Scheduler, that is the best. and Also do care of TimeZones :P :P
here are the links which may help you.
Upvotes: 0
Reputation: 5605
if your client/user is using Windows operating system then you can use Windows Task Scheduler to do the job. To schedule the job programmatically see this post and this post
Upvotes: 1
Reputation: 39013
Sure, just use the Windows Task Scheduler. Windows will take care of running your application.
Upvotes: 1