c++ - Get process name windows title name and installed software name -


I would like to know a software when it wants to run it on the name of the process name and its company and for example this windows The name of the software is Add / Remove Program, which is called File Client 3.3.2.1, its process name is filezilla.exe, its company name is FileZilla Project, its Windows Title Title is FileZilla

Is it possible to get these connections

Calculate all windows to get your window handle (HWND) with EnumWindows.

For each window: Use GetWindowText to get its title: Use GetWindowThreadProcessId to get the process ID of windows To get a handle in the process, use OpenProcess to get the name of the exe Use GetModuleBaseName for

Comments