Archive: Check if program activated


Check if program activated
Hello,

i want check if program.exe in install folder is active.
I need this option for uninstall my program, because
if it is active than it can not uninstall this exe file.


Instead of just checking to see if it's activated, why not just kill the process no matter what?

Use the plugin on this page:
http://nsis.sourceforge.net/archive/...php?pageid=271

Then you just call it using this code:
KillProcDLL::KillProc "process_name.exe"

And it will automatically close the program.


If you just want to see if the program is running (without killing it):

http://nsis.sourceforge.net/archive/...php?pageid=483