I am looking for ways to do the following preferably in Java:
Some programs (e.g. anti virus, etc) pose problems during windows startup, so these have to be excluded from startup and executed only when the startup process is completed. This problem exists probably due to incompatibilities with the OS, hardware etc.. among other factors... other SW/HW changes being considered... But meanwhile, I am thinking of creating an executable jar file (icon) for these that implements the pseudo code above. Thanks for any comments on how to do it in Java. [ May 27, 2003: Message edited by: boyet silverio ]
sram bahl
Greenhorn
Joined: Nov 26, 2002
Posts: 13
posted
0
You can always identify the process that are running from the process table. You can issue java based shell calls (Runtime.exec(...))on OS specific commands to identify these processes.
boyet silverio
Ranch Hand
Joined: Aug 28, 2002
Posts: 173
posted
0
thanks, thats the place to start.
I agree. Here's the link: http://ej-technologies/jprofiler - if it wasn't for jprofiler, we would need to
run our stuff on 16 servers instead of 3.
subject: Using Java, how to detect if an App is running