get all the process in my computer in uwp
问题 I have a problem when I having my UWP development.In my application, I need to get all the apps details(including its displayname or the ExecutableFileName), which is running in the computer. My first solution is to to use the System.Process class, and I do it like private void Mybutton_Click(object sender, RoutedEventArgs e) { var apps = Process.GetProcesses(); ... } But it is not availbale in the UWP and throws a exception when I try to do it. Secondly,I have tried the System.AppDiagnostics