I've got a program that tends to crash quite often while I'm asleep and I need to keep it running. So I thought I might writeup a vb6 application that monitors the process list, if something disappears it will relaunch it. Anyone know of an easy way?
|
|
You could use EnumProcesses to list every process in the system at the moment you're running you could use this declaration to use it
Prior using it you should define an array of Long to pass as an argument to EnumProcesses with enough space to read all processes ids. You could call EnumProcesses twice to discover how large that array should be. After the second call you could start looping through that array and opening the processes obtaining that way a handle which used appropriately can tell you the name of the process executable and comparing that data with the name of the executable you're searching you are done. Otherwise if what you're looking for is a DLL for example you could EnumProcessModules for that process handle searching for each running process for the dll you're looking for. the declaration of EnumProcessModules is this
and the probable code you'd need would be something like this
function code is a little long but calling it is a little function, you may use it if you want to test it a little :) |
||
|
|
|
|
Use WMI. |
|||
|
|
|
|
I've used scheduled task (running at each 10 min), starting cmd file with next content: tasklist |find "myapp.exe" >nul || c:\mypath\myapp.exe You can execute such command file from VB6 Shell or just use Task Scheduler :) |
||
|
|
|
I use a program that runs other programs. That way you can poll the process handle to see if the application is still running. If not you can launch it again. It does require API programming. |
||
|
|
