Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I download correct versions of mscordacwks and mscorwks? [duplicate]

I am trying to analyze an IIS memory dump usinf Windbg and SOS and ran into an issue with version of files mentioned above. My question is - is there a way I can download the different versions of these files? Assume that I have no access to the server and cannot copy them from the server. The versions I am specifically interested in is mscordacwks_x86_x86_2.0.50727.3603 and the corresponding mscorwks dll.

like image 842
Devaiah Avatar asked Apr 06 '11 04:04

Devaiah


1 Answers

For me, the following downloads the correct version of mscordacwks in WinDbg:

.symfix c:\symbols
.cordll -ve -u -l

Using WinDbg 6.2.9200.16384 and a dump with .NET 4.0.30319.296 / 4.0.30319.18034. Unfortunately I don't have a .NET 2 dump available with different .NET version than on my machine.

For those who have access to the PC where the dump comes from, you can try Mscordcwks collector.

like image 89
Thomas Weller Avatar answered Sep 20 '22 15:09

Thomas Weller