mandiant / STrace

A DTrace on Windows Reimplementation
MIT License
328 stars 41 forks source link

.NET PDBs #32

Closed Ana06 closed 5 months ago

Ana06 commented 5 months ago

At the moment PDBReSym.exe cachesyms iterates through C:\Windows\System32 downloading all PDBs to C:\symbols.

Proposing to in addition download C:\Windows\Microsoft.NET which is useful for .NET debugging (when dnspy doesn't work). Or is there a way to do this already?

stevemk14ebr commented 5 months ago

Try invoking PDBReSym for a second time with the sysdir command line option set to the .net directory. This is a sub flag of the cachesysms command line option

Ana06 commented 5 months ago

PDBReSym.exe cachesyms --sysdir "C:\Windows\Microsoft.NET" works, thanks @stevemk14ebr!