如何知道运行 UWP 应用程序的用户

How to know the user the UWP application runs with

我如何以非编程方式知道 UWP 应用程序运行的用户是什么。
该应用程序在 Windows IoT 10 Core 上运行。
是否有一些用于 Power Shell 的命令序列以了解用户?

您是否尝试过使用 get-process commandlet?

这是它的 MS 文档:link

我建议你使用命令解析进程名称,然后看看:

Get-Process <insert_process_name> -IncludeUserName 

希望对您有所帮助 ;)