How can I debug a win32 process that unexpectedly terminates silently?

前端 未结 11 2227
你的背包
你的背包 2021-02-03 13:29

I have a Windows application written in C++ that occasionally evaporates. I use the word evaporate because there is nothing left behind: no \"we\'re sorry\" message from Window

11条回答
  •  半阙折子戏
    2021-02-03 13:54

    You could try using the adplus utility in the windows debugging tool package.

    adplus -crash -p yourprocessid
    

    The auto dump tool provides mini dumps for exceptions and a full dump if the application crashes.

提交回复
热议问题