WinDbg, display Symbol server paths of loaded modules (even if characters did not load)?

Is there a way from WinDbg, without using the DbgEng API, to display the symbol server paths (i.e. PdbSig70 and PdbAge ) for all loaded modules?

I know that

lml

does this for modules whose characters are loaded. I would like to know these paths for characters that I did not load in order to diagnose the problem. Does anyone know if this is possible without using the DbgEng API?

edited by:

I also understand that you can use

!sym noisy

to get character loading error messages. Although this has a useful conclusion, it alternates with the other output I want, and is not as simple as "lml"

+2
3

! sym noisy ! sym quiet , :

!sym noisy
.reload <dll>
X <some symbol in that DLL to cause a load>
!sym quiet

PDB, , , PDB .

+2

, windbg . , script, , , .

windbg script. , , PE.

++, (, ). windbg script .

windbg. , windbg ( , , ).

+1

All Articles