5

Possible Duplicate:
How can I know the CLR version of a crash dump?

If I open a dump file (of a managed process) in WinDbg, is there anyway of finding which version of .NET framework that process was using?

Community
  • 1
  • 1
imak
  • 6,489
  • 7
  • 50
  • 73

2 Answers2

6

The lm (List Modules) command can provide such information, with verbose output and the Match flag:

lmv m mscor*
Override
  • 258
  • 1
  • 5
  • 12
2

It's just a guess, but if you can check what modules were loaded, you should see what version of mscorwks.dll (.NET 2.0 / 3.5) or clr.dll (.NET 4.0) was used.

You can use 'lmv' command.

ppiotrowicz
  • 4,464
  • 3
  • 32
  • 46