Skip to content

Instantly share code, notes, and snippets.

@fiddyschmitt
Last active April 26, 2026 07:58
Show Gist options
  • Select an option

  • Save fiddyschmitt/90d835210d5be75e8a7e355f121ed267 to your computer and use it in GitHub Desktop.

Select an option

Save fiddyschmitt/90d835210d5be75e8a7e355f121ed267 to your computer and use it in GitHub Desktop.
WinDbg with offline symbols
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