TaskIsRunning 1.0
TaskIsRunning is a small app for checking if and how many times a task is running.
The reply will tell how many there are running but the return code will also tell it.
Thus it is easy to use in a batch file.
Example of use:
TaskIsRunning cmd.exe
Example Reply:
2 tasks running
Reply is then 2
batchfile use to start ioftpd.exe only once
@echo off
TaskIsRunning ioftpd.exe
if errorlevel 1 goto exitbatch
start c:\ioftpd\system\ioftpd.exe
:exitbatch
1.0.0: First release
With this you can for example easily start ioftpd once or eggdrop only once....
|