I want to be able to monitor process exceptions with stack traces in real-time, while they occurred. I'd like to do that on a client PC, while I don't have any developing tools installed, nor do I wish to install large tools on it.
I tried procdump with the following command:
procdump -e 1 -l -f "" <procname>
This allows me to monitor process only exceptions in real-time as they occur. However, I’m looking for a solution that not only shows the exceptions but also provides a stack trace for each exception.
Is there a free tool available that offers this functionality? Alternatively, could a PowerShell script be written to achieve this? Any guidance would be greatly appreciated.
Edit: I don't want to create a dump file for a later inspection. I rather like to see the exceptions with their traces as they occurred.