I want to close process by windows title whenever that process open. How i do it?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
On Windows, use
FindWindow()to locate a window with the desired title, and if found then usePostMessage()to post aWM_QUITmessage to it. If the window is still running after a period of time, then you might be able to brute force kill it, depending on permissions, by usingGetWindowThreadProcessId(),OpenProcess()andTerminateProcess().