you may get the following error when you try to debug the dump generated on other servers by using windbg.
PDB symbol for mscorwks.dll not loaded You can also run the debugger command .cordll to control the debugger's If you are debugging a minidump, you need to make sure that your executable |
way to fix it is every easy, following the follow steps.
Copy 3 files located in [C:\Windows\Microsoft.NET\Framework\v2.0.50727] to a folder like d:\productionsos, use Framework64 for X64 System.
- SOS.DLL
- MSCORWKS.DLL
- MSCORDACWKS.DLL
then Open a new Windbug, locate the Dump. and run the following commands.
0:000> !sym noisy |
the same approach applies to the Microsoft Silverlight Debugging. simply copy the 3 files located in your Silverlight SDK directory. like
C:\Program Files\Microsoft Silverlight\3.0.40818.0
More troubleshooting entries.
- SQlServer StreamInside , Unable to Create Application Microsoft.ComplexEventProcessing.ConnectionException: Access is denied
- windbg:PDB symbol for mscorwks.dll not loaded when you debug dump of .net app or silverlight apps and How to configure WinDbg to run other versions of the .NET
- Biztalk 64bit Host CPU 100% , Microsoft.BizTalk.MsgBoxPerfCounters.CounterManager.RunCacheThread
3 comments:
I would like to exchange links with your site androidyou.blogspot.com
Is this possible?
sure
64bit debugger dumped 32 process,
load the extension to avoid the error
0:000> .load wow64exts
0:000> !sw
Switched to 32bit mode
Post a Comment