Get Status of a Process from Task Manager

HI @Rahul_J

I dont think we can get the text from task manager.

Yes you can also check this way

Method 1:

  • Get Processes activity
  • Give this expression in a string variable
If(String.Join(",",Processes.AsEnumerable().Select(Function(s) s.ProcessName)).Contains("Skype"),"Running","Not Running")

Expression will get all the process info that running currently in array and check if process list contains “Specific process name” True-> Running ;False-> Not Running

Method 2:

  • Get Process activity
  • Loop through all the running process and assign a boolean if the process is running
  • Based on that boolean assign status in switch true ->Running False-> Not Running

Attaching the sample xaml file
Main.xaml (13.8 KB)

Hope this Helps!

Regards
Sudharsan