Each detached job displays an icon in the system tray. If you rest your mouse pointer over an icon it will display a help tip like "24x7 Scheduler job #256 -- my vb script" The reason this icon doesn't disappear is either because the job hangs or you forcibly terminate the process and because of that 24x7 gets no chance to remove the job icon. If the job hangs you should see multiple instances of 24x7.exe in the Task Manager (Processes). For jobs running less then 10 minutes I highly recommend using "synchronous" run option. This will eliminate the problem with multiple instances (you still need to figure out why the job hangs or terminates abnormally). Asynchronous option causes each asynchronous job to run in a separate background thread outside of the job queue. : I run a VB script that searches a directory and emails : files. After a couple of days I notice that multiple : instances of the scheduler are in my system tray. The : job last less than 30 seconds. I have it asynchronous : in its own queue. What could be causing this? Runs as : an NT service on NT.
|