Simon Hofverberg
Simon Hofverberg

Reputation: 171

WinDbg can't find mfc90 version 9.0.30729.4148 symbols on msdl.microsoft.com

WinDbg can't find mfc90 version 9.0.30729.4148 symbols on msdl.microsoft.com

Where are those mfc symbols?

Some background info:

The symbols are present on the server, but WinDbg can't get them.

Upvotes: 5

Views: 2246

Answers (1)

hofingerandi
hofingerandi

Reputation: 537

I had a similar behaviour in Visual Studio; the symbols for MFC90.dll wouldnt load. Clicking on "Symbol load information" for mfc90.dll gave "No matching binary found".

I searched for the correct dll on my computer and found it at

C:\WINDOWS\WinSxS\x86_Microsoft.VC90.MFC_1fc8b3b9a1e18e3b_9.0.30729.4148_x-ww_a57c1f53

Note that of course this path only contains the dll, but not the .pdb-file.

Anyways, after adding this path to the symbol search path, Visual Studio is able to download the correct pdb-file from the Microsoft symbol server.

In case the required dll cannot be found locally, I suppose ModuleRescue can help.

Upvotes: 2

Related Questions