Get the right .net native symbols for Windbg

后端 未结 3 1097
悲哀的现实
悲哀的现实 2021-01-13 20:00

I\'m doing some crash dump debugging, where I am looking a dump taken from a production server. The machine I\'m running WinDbg on must have a slightly different version of

3条回答
  •  刺人心
    刺人心 (楼主)
    2021-01-13 20:43

    You can have WINDBG download the official symbols from Microsoft Servers by running the following command:

    .sympath srv*c:\symbols*http://msdl.microsoft.com/download/symbols
    .reload /f
    

    This will store the symbols downloaded from the server in a local cache at C:\Symbols and then force a reload of the symbols for all currently loaded modules.

提交回复
热议问题