windows - How to extract paths (pdb file) that are stored in an exe? -


when executable built, stores path of pdb files generates. how can find path given have executable?

the answer link utility. available when run developer command prompt vs2015.

c:\>link -dump -headers c:\path\app.exe 

the pdb files path in debug directories section.

it worth nothing tool available visual studio command line described here.

you can start tool visual studio command prompt. cannot start system command prompt or file explorer.


Comments