Skip to content

Instantly share code, notes, and snippets.

@lzybkr
lzybkr / Get-WinDbg.ps1
Last active May 16, 2026 02:23
Download and extract the latest WinDbg without installing so you can run on systems like Windows Server
param(
$OutDir = ".",
[ValidateSet("x64", "x86", "arm64")]
$Arch = "x64"
)
if (!(Test-Path $OutDir)) {
$null = mkdir $OutDir
}