How to run scheduler for more than one time in a day

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hi
I'm having VB console application.
I want to schedule this app so that it can run for every 30 mins.
I don't want to use Windows Services here.
Is there any way where i can run scheduler for more than once in a day?

Thanks
 
srinivas said:
Hi
I'm having VB console application.
I want to schedule this app so that it can run for every 30 mins.
I don't want to use Windows Services here.
Is there any way where i can run scheduler for more than once in a day?

Thanks

What do you mean you don't want to use windows services? Does that
mean you don't want to use the Windows Task Scheduler?
 
hi Tom,
Thanks for replying.
What i mean to say is
I don't want to use .net Windows Services to run my console application

I want to use the Windows Task Scheduler ONLY.
I want to schedule my console applicaion in Windows Scheduled Tasks.But the
problem with Scheduled Tasks is that i can't run more than once in a day.
But programatically i want that to be done in VB.net

Thanks
Srinivas
 
srinivas said:
hi Tom,
Thanks for replying.
What i mean to say is
I don't want to use .net Windows Services to run my console application

I want to use the Windows Task Scheduler ONLY.
I want to schedule my console applicaion in Windows Scheduled Tasks.But the
problem with Scheduled Tasks is that i can't run more than once in a day.
But programatically i want that to be done in VB.net

Thanks
Srinivas

Ok... I see what you want - and you can use the task scheduler for
that. If your doing it manually, you can open the advanced task
properties. And in there, it lets you specifie a duration for
repeating a task...

If you want to do it programatically, I can help you out with that as
well :)
 
Thanks alot Tom,
Till now i did't see the Advanced tab only.
You saved my time.
It will be great if you give me the programatical way also.

Once again thank you very much....
Srinivas
 
Back
Top