Reputation: 13
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
Reputation: 174485
Use the -IncludeUserName
switch to request resolution of the process owner identity:
Get-Process -IncludeUserName
Upvotes: 4