As an administrator, I can get user processes by doing this
Get-Process -IncludeUserName | Where UserName -match test
But as a non-administrator, I cannot use -IncludeUserName becuase "The IncludeUserName parameter requires elevated user rights."
So, if I am registered as a user test, how do I list only its processes, and not everything that works?
powershell
Patricf
source share