Hi, My application goes into unresponsive state. So, I want to check before my automation begins to prevent it from failing when it gets unresponsive. The application is Outlook.
use this in an assign activity
System.Diagnostics.Process.GetProcessesByName("OUTLOOK").Any(Function(x) x.Responding)
this returns a boolean based on that you can re-start your outlook or continue with your process.
Thank you @muktadir !
This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.