获取windbgx离线安装包
文章介绍了Windbgx的安装方法及其Portable版本的制作方式。通过下载appinstaller文件获取msixbundle安装包,并支持右键安装或PowerShell操作。同时提供了历史版本链接,并说明如何使用7-Zip提取Portable版本以适应无Microsoft Store环境。 2025-8-11 10:43:55 Author: blog.nsfocus.net(查看原文) 阅读量:16 收藏

阅读: 10

创建: 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
————————————————————————–


文章来源: https://blog.nsfocus.net/%e8%8e%b7%e5%8f%96windbgx%e7%a6%bb%e7%ba%bf%e5%ae%89%e8%a3%85%e5%8c%85/
如有侵权请联系:admin#unsafe.sh