I am writing an application in c++ on win7 platform which needs to close another application. The steps I use are:
- Enumerate all processes with EnumProcess().
- Open a Process handle with OpenProcess(). The access rights are PROCESS_ALL_ACCESS|PROCESS_VM_READ.
- Then enumerate process modules with EnumProcessModules()
- I extract the module name with GetModuleBaseName() and compare it with the process name that I have.
- When I find a match, I use TerminateProcess() to kill the process.
The problem I am facing is this works in WindowsXP but not in Windows 7(64 bit). Using getlasterror(), I get the error as "Access Denied". I guess it has something to do with access rights. Is there any way I can do this on both the platforms? Or is there an API specific to win7?
WM_QUITmessage to that other application? – Cody Gray Jan 5 '11 at 13:16