How can you get thread count of running process in windows 7. i have a multi threaded c# application and i want to see active threads of that process while running.

link|improve this question
feedback

2 Answers

up vote 3 down vote accepted

Open Task Manager (for example, by pressing Ctrl + Shift + Esc) and go to the Processes tab.

From the menu, select View > Select Columns... and enable Threads.

enter image description here

You can also achieve the same thing with Process Explorer.

link|improve this answer
Process Explorer has an option to display the total thread count in the status bar. – Richard Oct 17 '11 at 6:25
feedback

http://msdn.microsoft.com/en-us/library/ms686852(v=VS.85).aspx

link|improve this answer
Welcome to Super User! Whilst this may theoretically answer the question, it would be preferable to include the essential parts of the answer here, and provide the link for reference. – Tom Wijsman Nov 2 '11 at 15:06
feedback

Your Answer

 
or
required, but never shown

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