How to catch unhandled exception from .Net application with procdump (or similar)?

前端 未结 2 1837
天涯浪人
天涯浪人 2021-01-21 06:50

The long (boring) story

Currently i have an application that leads to an exception on only one pc. After some digging around i could encapsulate the problem with a sma

相关标签:
2条回答
  • 2021-01-21 07:25

    DebugDiag is one of the easiest way to get memory dump based on an exception.

    Look for "Configure Exception Dialog" help section within debugdiag to generate a dump based on exception.

    Below is an example to generate full memory dump based on ArgumentException

    enter image description here

    0 讨论(0)
  • 2021-01-21 07:26

    DebugDiag or WinDbg is OK.

    http://support.microsoft.com/kb/919789

    http://www.microsoft.com/whdc/devtools/debugging/default.mspx

    0 讨论(0)
提交回复
热议问题