Hi Team,
How to get the status of any process from Task Manager??
Thanks
Hi Team,
How to get the status of any process from Task Manager??
Thanks
Yes, Is there any other way to achieve the same ?
HI @Rahul_J
Try this with Get Processes activity
https://docs.uipath.com/activities/docs/get-processes
It will get youe all the running application
by that you can give a condition to check if item.toString.Contains(“main_csh.exe or something like that”)
Hope this Helps
Regards
Sudharsan
Hi @Rahul_J
You can open the Task manager
Use Send Hot key activity Ctrl+Shift+Esc
Get the Status for the particular process using Get Text ot CV get text activity
I’m quite not sure how it will work. Kindly check it
Team- I need to get the text (Status) of any given process.
HI @Rahul_J
I dont think we can get the text from task manager.
Yes you can also check this way
Method 1:
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:
Attaching the sample xaml file
Main.xaml (13.8 KB)
Hope this Helps!
Regards
Sudharsan