Question

I just downloaded the symbol package for WIN7 RTM but in my windbg it still find the symbol information for RegQueryValueEx().

From the windbg information it said some of the OS dll symbol is not provided in the pdb file, but how can I know which ones are not provided and which one does?

Specifically the symbol I am searching for is RegQueryValueEx();

Thanks. Bin

Was it helpful?

Solution

You can watch your loaded modules and corresponding symbols using the lm command. However, since WinDbg doesn't load symbols until they are needed, you can do a .reload /f to force load of all symbols.

If the output from lm says (pdb symbols) for a given module, you have the correct public symbols for that module.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top