Last active
April 26, 2026 07:58
-
-
Save fiddyschmitt/90d835210d5be75e8a7e355f121ed267 to your computer and use it in GitHub Desktop.
WinDbg with offline symbols
This file contains hidden or 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
| Use these steps to use symbols on an offline PC. | |
| Create a manifest of the drivers, exes & dlls: | |
| Download pdblister: https://github.com/microsoft/pdblister | |
| On admin console: | |
| pdblister manifest C:\Windows | |
| Download the symbols using a PC with internet access: | |
| Download the Windows SDK iso from https://learn.microsoft.com/en-us/windows/apps/windows-sdk/downloads | |
| Open with 7-Zip | |
| Extract: X64 Debuggers And Tools-x64_en-us.msi | |
| Install | |
| mkdir C:\Temp\symbols | |
| symchk /im C:\Temp\manifest.txt /s srv*C:\Temp\Symbols*https://msdl.microsoft.com/download/symbols | |
| Anyalyse on offline PC: | |
| Run WinDbg | |
| SRV*C:\Temp\symbols |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment