Last active
January 10, 2019 00:34
-
-
Save matijagrcic/2ac891efdbaec0bb13b5e1d6aa56fb7a to your computer and use it in GitHub Desktop.
Process Explorer and WinDbg
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#for VS | |
_NT_SYMBOL_PATH | |
SRV*C:\SYMBOLS\PUBLIC*http://referencesource.microsoft.com/symbols;SRV*C:\SYMBOLS\PUBLIC*https://msdl.microsoft.com/download/symbols | |
#for Process Explorer | |
"C:\Program Files\Windows Kits\10\Debuggers\x64\symstore" add /f "PATHTOYURPDBs\*.pdb" /s "C:\SYMBOLS\PUBLIC" /t NAME | |
#for Process Explorer | |
C:\Program Files\Windows Kits\10\Debuggers\x64\dbghelp.dll | |
SRV*C:\SYMBOLS\PUBLIC*http://referencesource.microsoft.com/symbols;SRV*C:\SYMBOLS\PUBLIC*https://msdl.microsoft.com/download/symbols | |
Both C:\Program Files\Windows Kits\10\Debuggers\x64\dbghelp.dll and C:\Program Files\Windows Kits\10\Debuggers\x64\symsrv.dll | |
need to be in the folder for Process Explorer to start resolving symbols. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment