How to use AT command for every 15minutes?

D

DV Ramesh

Dear friends:

Please help me How to use AT command for every 15minutes?
from the below it works for every weekday at 10.00AM

AT \\OurServer 10:00 /INTERACTIVE /EVERY:M,T,W,TH,F "C:\notify.bat"

But I want to execute the same for every 15 minutes on every weekday.

Thanks in advance,
Ramesh
(I posted in other groups also, sorry for the duplicate posting)
 
P

Pegasus \(MVP\)

DV Ramesh said:
Dear friends:

Please help me How to use AT command for every 15minutes?
from the below it works for every weekday at 10.00AM

AT \\OurServer 10:00 /INTERACTIVE /EVERY:M,T,W,TH,F "C:\notify.bat"

But I want to execute the same for every 15 minutes on every weekday.

Thanks in advance,
Ramesh
(I posted in other groups also, sorry for the duplicate posting)

Type this single line:

for /L %h in (0,1,23) do for /L %m in (0,15,45) do AT \\OurServer %h:%m
/INTERACTIVE /EVERY:M,T,W,TH,F "C:\notify.bat"

The Task Scheduler has this functionality already built in.
Instead of multi-posting, use cross-posting for your next post.
 
D

DV Ramesh

Type this single line:

for /L %h in (0,1,23) do for /L %m in (0,15,45) do AT \\OurServer %h:%m
/INTERACTIVE /EVERY:M,T,W,TH,F "C:\notify.bat"

The Task Scheduler has this functionality already built in.
Instead of multi-posting, use cross-posting for your next post.

Thanks a lot..It works.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top