process exe full path
C / C++ / MFC
3
Posts
2
Posters
0
Views
1
Watching
-
I have to do this for Windows 95/98/Me/200/NT/XP: I have the ID of a process(obtained with Process32First/Next) and I want to get the full path of the executable hwo started that process. In PROCESSENTRY32 the member szExeFile gives me only the name of the file but not the full path... Thank you! Best regards, radu.
-
I have to do this for Windows 95/98/Me/200/NT/XP: I have the ID of a process(obtained with Process32First/Next) and I want to get the full path of the executable hwo started that process. In PROCESSENTRY32 the member szExeFile gives me only the name of the file but not the full path... Thank you! Best regards, radu.
-
One solution is EnumProcessModules(). OpenProcess() EnumProcessModules() GetModuleFileNameEx() Kuphryn