Assuming I already have the handle to a window, I can get the pid with GetWindowThreadProcessId. Is there a way I can get the process name without having to get all the processes and try to match my pid?

link|improve this question

75% accept rate
feedback

2 Answers

up vote 4 down vote accepted

You can use Process.GetProcessById to get Process. Process has a lot of information about the running program. Process.ProcessName gives you the name, Process.MainModule.FileName gives you the name of the executable file.

link|improve this answer
Yes you are right. Thank you. And I can also get other information too regarding the process. – user579674 Jan 27 '11 at 17:42
feedback
Process.GetProcessById(id).ProcessName
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.