3. Configure Windbg Symbol Path

jcgriff2

Co-Founder / Admin
BSOD Instructor/Expert
Microsoft MVP (Ret.)
Staff member
Joined
Feb 19, 2012
Posts
21,541
Location
New Jersey Shore
Windows8LOGO_200x67.jpg

44817
Configure Windbg Symbol Path


Info


Configure Windbg Symbol Path

There is no need whatsoever to download symbol packages anymore. All needed Windows symbol files are obtained from the MSDL Symbol Server as each dump runs. Within a year, you'll find your symbol folder size at several GBs.



You can delete the symbol file folder at anytime. Windbg runs will repopulate it.

When running Windbg, it will first check c:\symbols. If not found, the symbol file will be downloaded and placed into c:\symbols. You can change the symbol drive and directory to whatever you would prefer -
Code:
[NOPARSE]
SRV*c:\symbols*https://msdl.microsoft.com/download/symbols[/NOPARSE]

Open Windbg (no dump file); hit CTRL-S;
paste the above path into the small screen that appeared; Click on "File"; click on "Save Workspace"

Hit CTRL-S again to assure that the symbol file path is there.

1610225618597.png
 
Last edited by a moderator:
I prefer to use this version with the https address: https://msdl.microsoft.com/download/symbols

There was some trouble getting symbols about 2 years ago and I think this solved it.
 
Last edited:
I get this page from the link -

45563


I changed my sym path in post #1 to https.
 
Back
Top