!PrintException
输出异常的信息当发生了E0434352的CLR Exception时,Exception_Record结构各成员填充值如下:
ExceptionAddress: 760d35d2 (KERNELBASE!RaiseException+0x00000062) //引发异常地址
ExceptionCode: e0434352 (CLR exception) //异常代码
ExceptionFlags: 00000001
NumberParameters: 5 //附加参数个数
Parameter[0]: 80070057 //映射的HRESULT值,代表的具体错误,对应一个 CLR异常类型
Parameter[1]: 00000000
Parameter[2]: 00000000
Parameter[3]: 00000000
Parameter[4]: 542b0000 //clr.dll模块被加载到进程空间里的基址
下面的步骤主要针对包含E0434352异常的dmp分析的:
输入.exr -1观察异常结构,确定两个信息:
输入!sos.pe来获取如下信息:
原文:https://www.cnblogs.com/yilang/p/11867637.html