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. Where can I see it?


Solution 1:

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.

Solution 2:

In Windows 10

Task manager -> Details -> (right click) Select columns -> (check) Threads

enter image description here