Alpha Sniper
Alpha Sniper

Reputation: 13

Get processes running for a particular user in Windows Server 2016 using PowerShell

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.

Upvotes: 1

Views: 2099

Answers (1)

Mathias R. Jessen
Mathias R. Jessen

Reputation: 174485

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

Get-Process -IncludeUserName

Upvotes: 4

Related Questions