Schedulling an application

A

Andy

Hay...
I want to run a batch file every 5 minutes. But
unfortunately, I can't do that with "Task Scheduler"
because the minimum time for schedulling in Task
Scheduller is Daily.

Anybody know how to run a batch file for every 5
minutes ???

best regards,

Andy
 
J

Jerold Schulman

Hay...
I want to run a batch file every 5 minutes. But
unfortunately, I can't do that with "Task Scheduler"
because the minimum time for schedulling in Task
Scheduller is Daily.

Anybody know how to run a batch file for every 5
minutes ???

best regards,

Andy



Schedule the following to start when the computer starts or when you logon:


@echo off
setlocal
:again
ping -n 301 127.0.0.1>nul
your code here
goto again



Jerold Schulman
Windows: General MVP
JSI, Inc.
http://www.jsiinc.com
 
D

Dave Patrick

Create the task then properties for the task Schedule|Advanced check the box
for "Repeat Task" every 5 minutes with a duration of 24 hours.

--
Regards,

Dave Patrick ....Please no email replies - reply in newsgroup.
Microsoft MVP [Windows NT/2000 Operating Systems]
http://www.microsoft.com/protect.

:
| Hay...
| I want to run a batch file every 5 minutes. But
| unfortunately, I can't do that with "Task Scheduler"
| because the minimum time for schedulling in Task
| Scheduller is Daily.
|
| Anybody know how to run a batch file for every 5
| minutes ???
|
| best regards,
|
| Andy
 

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