View Single Post
Old 12-15-2003, 08:35 AM  
FTPServerTools
Senior Member
 
Join Date: Sep 2002
Posts: 543
Default 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....
Attached Files
File Type: zip taskisrunning.zip (2.1 KB, 280 views)
FTPServerTools is offline   Reply With Quote