Search code examples
powershelluwpwindows-iot-core-10

How to know the user the UWP application runs with


How can I non programmatically to know, what the user, the UWP application runs with.
The application runs on Windows IoT 10 Core.
Is there some commands sequence for Power Shell for know the user?


Solution

  • Have you tried using the get-process commandlet?

    Here's the MS documentation for it: link

    I would suggest you use the command to resolve the process name and then have a look at :

    Get-Process <insert_process_name> -IncludeUserName 
    

    Hope it helps ;)