获取windbgx离线安装包

创建: 2020-11-16 16:30
更新: 2025-08-07 11:01

windbgx与windbg有差别,下面的内容适用于windbgx。先下载

https://windbg.download.prss.microsoft.com/dbazure/prod/1-0-0/windbg.appinstaller

windbg.appinstaller实际是个XML文件,形如

————————————————————————–
<?xml version=”1.0″ encoding=”utf-8″?>
<AppInstaller Uri=”https://windbg.download.prss.microsoft.com/dbazure/prod/1-0-0/windbg.appinstaller” Version=”1.2506.12002.0″ xmlns=”http://schemas.microsoft.com/appx/appinstaller/2018″>
<MainBundle Name=”Microsoft.WinDbg” Version=”1.2506.12002.0″ Publisher=”CN=Microsoft Corporation, O=Microsoft Corporation, L=Redmond, S=Washington, C=US” Uri=”https://windbg.download.prss.microsoft.com/dbazure/prod/1-2506-12002-0/windbg.msixbundle” />
<UpdateSettings>
<OnLaunch HoursBetweenUpdateChecks=”0″/>
<AutomaticBackgroundTask/>
<ForceUpdateFromAnyVersion>true</ForceUpdateFromAnyVersion>
</UpdateSettings>
</AppInstaller>
————————————————————————–

上例含有windbgx安装包下载链接

https://windbg.download.prss.microsoft.com/dbazure/prod/1-2506-12002-0/windbg.msixbundle

获取安装包后,可安装,可升级。

资源管理器中右键windbg.msixbundle,有个安装,点击安装即可。但这个操作实际
依赖”App Installer”,没有Microsoft Store的Windows此法不通。可用PowerShell
安装、卸载:

Add-AppxPackage -Path “<path>\windbg.msixbundle”
Remove-AppxPackage Microsoft.WinDbg_1.2506.12002.0_x64__8wekyb3d8bbwe

更进一步,很多用windbgx的都有Portable的需求,安装后再复制太low了,事实上
7-Zip直接析取即可。windbg.msixbundle中有windbg_win-x64.msix,7-Zip打开后
者,这是个压缩包,释放到任意位置,就是Portable windbgx,可用于无Store的
Windows。

windbgx若干历史版本

————————————————————————–
总入口
https://windbg.download.prss.microsoft.com/dbazure/prod/1-0-0/windbg.appinstaller

1.2306.12001.0
https://windbg.download.prss.microsoft.com/dbazure/prod/1-2306-12001-0/windbg.msixbundle

1.2402.24001.0
https://windbg.download.prss.microsoft.com/dbazure/prod/1-2402-24001-0/windbg.msixbundle

1.2506.12002.0
https://windbg.download.prss.microsoft.com/dbazure/prod/1-2506-12002-0/windbg.msixbundle
————————————————————————–

Spread the word. Share this post!

Meet The Author