Unable to find module 'mscorwks.dll'

前端 未结 5 772
既然无缘
既然无缘 2021-02-01 03:12

I try to use the winDBG to debug a dump file. When I run .loadby sos mscorwks.dll

It gave me an error message. Unable to find module \'mscorwks.dll\'

Has anyone

5条回答
  •  温柔的废话
    2021-02-01 04:01

    If you are debugging a .NET 4.0 application, you need to use the following instead of mscorwks:

    .loadby sos clr

    Here is a good overview of the commands available for different versions of the FULL .NET framework. Enjoy!!

提交回复
热议问题