I have some windows applications. I will run all those Apps one by one from a console application. If any application produces run time exception, then it should save that exception's details and need to move to the next application.
I have tried the solution given in the below link: catch another process unhandled exception. But it is not solving my problem.
For Ex: From my console app, calling the windows app named 'App1.exe'. If the App1 gives run time exception, it should be logged by console app and continue the rest.
Please anyone provide an optimal solution or an idea to get the unhandled exceptions's details of the applications which are all providing exception at run time.