1

How to get the process list user-wise in Windows Server 2016 using PowerShell?
I mean Get-Process would give me the list of running processes, but that is for the machine. I want the process list for individual users who're logged-in to the machine.

1
  • Get-Process -IncludeUserName Commented Oct 19, 2020 at 12:50

1 Answer 1

4

Use the -IncludeUserName switch to request resolution of the process owner identity:

Get-Process -IncludeUserName
Sign up to request clarification or add additional context in comments.

1 Comment

Is there any other alternative to that, since this requires administrative privileges and I don't want that.

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.