Hello everyone,
I am using Windbg to load a crash dump from managed code (C#, a console application built for Any CPU), and crash dump is created on x64 platform. I am debugging on x64 platform. I have put the related pdb file into symbol path. But Windbg always find the symbol from a strange folder, here is an example (when I got from using !sym noisy),
SYMSRV: c:\MySymbols\FooService.pdb\4311207E2E2D442CB7473828D2488F941\FooService.pdb not found
My application is called FooService.exe and related pdb is named FooService.pdb. I have set C:\MySymbols as symbol path and copy FooService.pdb to the directory C:\MySymbols. But why Windbg does not find FooService.pdb from C:\MySymbols, but from a strange sub-folder "FooService.pdb\4311207E2E2D442CB7473828D2488F941"? In my scenario, in order to load the pdb symbol file, what is the best solution (do I have to create the sub-folder FooService.pdb\4311207E2E2D442CB7473828D2488F941 by myself manually)?
thanks in advance, George