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

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?

1 Answer

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.
1

Your Answer

Sign up or log in

Sign up using Google Sign up using Facebook Sign up using Email and Password

Post as a guest

By clicking “Post Your Answer”, you agree to our terms of service, privacy policy and cookie policy

You Might Also Like