embedded pdb path…
Posted by kiraninbng on July 8, 2006
Dumpbin is a command line utility used for extracting various information like headers,imported and exported functions etc from the exe or dll.
For more information u can check http://support.microsoft.com/kb/q177429/.
So how do u find the embedded pdb path,just give
Dumpbin /headers <exe name>
and then search for the debug directories section in the output of the dumpbin,u will find something like this,
Debug Directories
Type Size RVA Pointer
—— —— —– ——–
cv 30 00000000 2A000 Format: NB10, 44a89304, 2, D:\DELETE\ExeNameDebug\ExeName.pdb
FarPointer said
interesting info will look into it .