Hi to all!
I have exe application and want to kill it before entering installer.
How can i do this?
Thank you.
Detect working application
5 posts
http://nsis.sourceforge.net/Category:Plugins FCT if process has window, NsProces otherwise.
Thank you.
I found hWnd of application and sent message WM_CLOSE
I found hWnd of application and sent message WM_CLOSE
WM_CLOSE may not always be enough, better try close , wait a few seconds, see if still running and than kill the wanted process
Originally posted by onadPrecisely what FCT does 😉
WM_CLOSE may not always be enough, better try close , wait a few seconds, see if still running and than kill the wanted process
+ enumwindows (few instances of one application, for example all IE or OE), multithreading (stopping few apps at the same time), optional user confirmation message box, window search by caption/class full text or it's part only. And 1-2 lines of NSIS script only 😉.