How can I see which user accounts are running which processes in Windows 8.1?

13

2

I can look at the list of running processes/services by either going to Task Manager, or by typing tasklist in a console window. However, while both of these methods show me the list of running processes, neither one shows me which user account each process is running under. How can I see that information?

soapergem

Posted 2015-03-24T13:45:06.827

Reputation: 1 056

Answers

17

How can I see which user accounts are running which processes?

Solution 1 - Using the TaskManager

Click on the details tab to see see processes and users.

enter image description here

Source Windows 8 Task Manager In-depth Review (Updated)


Solution 2 - Using tasklist

Use the /v (Displays verbose task information) command line option:

tasklist /v

One of the output columns is "User Name".

Example output:

enter image description here


Further Reading

  • An A-Z Index of the Windows CMD command line - An excellent reference for all things Windows cmd line related.
  • tasklist - TaskList displays all running applications and services with their Process ID (PID) This can be run on either a local or a remote computer.

DavidPostill

Posted 2015-03-24T13:45:06.827

Reputation: 118 938

Perfect. That little "v" to the rescue. Again. Thanks, David. – Mike Diehn – 2017-05-10T13:15:16.913