I have a crash dump file that I need to analyze using windbg to run some tests.
Due to some restrictions I can’t comment, my symbols folder can only contain the symbols needed to analyze this crash dump.
Is there a way to know the exact symbols needed by a dump? If it helps, I can first analyze this dump in another environment where all the symbols are available.
Thank you.
You can use
!sym noisyto make Windbg dump out the symbol it needs and looks for.If you set up a symbol path with a local cache, Windbg will download into the local cache path only the needed symbols.
If you load the dump on your machine, force it to load all the symbols, the
lmlcommand will show all loaded symbols and you can see each module where it loaded the symbols from, copy only those pdb files into your target restricted environment.