¿Cómo configurar símbolos en WinDbg?

estoy usandoHerramientas de depuración para Windows y recibo el siguiente mensaje de error al iniciar WinDbg / cdb o ntsd:

Symbol search path is: *** Invalid ***
****************************************************************************
* Symbol loading may be unreliable without a symbol search path.           *
* Use .symfix to have the debugger choose a symbol path.                   *
* After setting your symbol path, use .reload to refresh symbol locations. *
****************************************************************************

Al ejecutar comandos arbitrarios, también recibo el mensaje de error

*** ERROR: Module load completed but symbols could not be loaded for <module>.<ext>

Y lo siguiente parece estar relacionado:

*********************************************************************
* Symbols can not be loaded because symbol path is not initialized. *
*                                                                   *
* The Symbol Path can be set by:                                    *
* using the _NT_SYMBOL_PATH environment variable.                   *
* using the -y <symbol_path> argument when starting the debugger.   *
* using .sympath and .sympath+                                      *
*********************************************************************

en un!analyze -v Yo tambien he visto

DEFAULT_BUCKET_ID:  WRONG_SYMBOLS

y

*************************************************************************
***                                                                   ***
*** Either you specified an unqualified symbol, or your debugger      ***
*** doesn't have full symbol information. Unqualified symbol          ***
*** resolution is turned off by default. Please either specify a      ***
*** fully qualified symbol module!symbolname, or enable resolution    ***
*** of unqualified symbols by typing ".symopt- 100". Note that        ***
*** enabling unqualified symbol resolution with network symbol        ***
*** server shares in the symbol path may cause the debugger to        ***
*** appear to hang for long periods of time when an incorrect         ***
*** symbol name is typed or the network symbol server is down.        ***
***                                                                   ***
*** For some commands to work properly, your symbol path              ***
*** must point to .pdb files that have full type information.         ***
***                                                                   ***
*** Certain .pdb files (such as the public OS symbols) do not         ***
*** contain the required information. Contact the group that          ***
*** provided you with these symbols if you need this command to       ***
*** work.                                                             ***
***                                                                   ***
*************************************************************************

¿Cómo configuro WinDbg para encontrar los símbolos?

Descargo de responsabilidad: esta pretende ser una pregunta canónica para todos lossímbolos equivocados publicaciones enwindbg.

Respuestas a la pregunta(1)

Su respuesta a la pregunta