- Стартовая страница
- Cтатьи, исходники
- Заметки о WinDbg
- Скачать
- Внешние ссылки
- Обо всем
- Контакты
- Утилиты
С недавнего времени, Microsoft уже не дает скачать отладчик WinDBG отдельно.
Для получения последней версии необходимо качать весь образ
WDK.
Это не всегда удобно, поэтому я выкладываю на своем ресурсе ссылки для прямого
скачивания дистрибутивов:
- ver. 10.0.17763.1 x86
- ver. 10.0.17763.1 x64
- ver. 10.0.17763.1 ARM
- ver. 10.0.17763.1 ARM64
В связи с переездом на GitHub Pages и
его ограничения на размер репозитория
я буду хранить одну старую версию (см. ниже — 6.12.2.633, подходящую для XP) и самую актуальную (см. выше).
- ver. 6.12.2.633 x86
- ver. 6.12.2.633 amd64
ΞρεΤΙκ
Tutorial
Provide download and installation methods for both new WinDbg and old WinDbg.
WinDbg is a multipurpose debugger for the Microsoft Windows computer operating system, distributed by Microsoft Debugging is the process of finding and resolving errors in a system; in computing it also includes exploring the internal operation of software as a help to development. It can be used to debug user mode applications, device drivers, and the operating system itself in kernel mode.
New WinDbg(Recommend)
- One-click WinDbg Download and Install
- Install WinDbg with Microsoft Store
- Install WinDbg with WinGet (Windows Package Manager)
winget install Microsoft.WinDbg
Previous version
If your OS is below Windows 10 Anniversary Update (version 1607), use this version.
You can get Debugging Tools for Windows as part of a development kit or as a standalone toolset:
- As part of the WDK
Debugging Tools for Windows is included in the Windows Driver Kit (WDK). To get the WDK, see Download the Windows Driver Kit (WDK).
- As part of the Windows SDK
Debugging Tools for Windows is included in the Windows Software Development Kit (SDK). To download the installer or an ISO image, see Windows SDK on Windows Dev Center.
- As a standalone toolset
You can install the Debugging Tools for Windows alone, without the Windows SDK or WDK, by starting the installation of the Windows SDK and then selecting only Debugging Tools for Windows in the list of features to install (and clearing the selection of all other features). To download the installer or an ISO image, see Windows SDK on Windows Dev Center.
These are the default installation directories for Debugging Tools for Windows:
- C:\Program Files (x86)\Windows Kits\8.x\Debuggers\x64
- C:\Program Files (x86)\Windows Kits\8.x\Debuggers\x86
Microsoft.WinDbg, Release version: 1.2306.12001.0
Command Line
Download Links For Version 1.2306.12001.0
Info
last updated 7/2/2023 9:04:52 PM
Publisher:
License:
Dependencies
No dependency information
Share
WinDbg — это мощный отладчик для операционных систем Windows, который чаще всего используется для анализа «дампов» памяти, анализа программного кода, отладки системных драйверов и разработки программного обеспечения.
Возможности
В этом разделе описаны функциональные возможности программы. Это следующие функции:
- широкий спектр функций для отладки и анализа дампов;
- поддержка локальной и удалённой отладки;
- возможность загрузки пользовательских расширений для расширения функциональности;
- работа через команды;
- просмотр и анализ стека вызовов для диагностики ошибок;
- использование инструментов для обнаружения и анализа утечек памяти в системных драйверах и приложениях;
- анализ и редактирование памяти процессов.
WinDbg является отличным инструментом для профессиональных разработчиков и системных администраторов, желающих глубже понять работу своих приложений и систем.
Плюсы и минусы
Ниже описаны сильные и слабые стороны программного обеспечения.
Достоинства:
- очень просто пользоваться, благодаря простому и интуитивно понятному интерфейсу;
- работа с полными, мини-мемори и пользовательскими дампами;
- интеграция с инструментами Windows SDK и WDK;
- открытый исходный код;
- широкий спектр функций.
Недостатки:
- отсутствие графического интерфейса;
- нет версии на русском;
- сложность для неопытного пользователя.
Как скачать
Последнюю и полную версию программы можно бесплатно скачать через торрент для Windows 7, 10, 11.
Платформа: | Windows 7, 8, 10, 11 |
Язык: | Английский |
Лицензия: | Бесплатно |
WinDbg
About This File
WinDbg is a multipurpose debugger for the Microsoft Windows computer operating system, distributed by Microsoft.[1] Debugging is the process of finding and resolving errors in a system; in computing it also includes exploring the internal operation of software as a help to development. It can be used to debug user mode applications, device drivers, and the operating system itself in kernel mode. Like the better-known Visual Studio Debugger it has a graphical user interface (GUI), but is more powerful and has little else in common.
WinDbg can be used for debugging kernel-mode memory dumps, created after what is commonly called the Blue Screen of Death which occurs when a bug check is issued.[2] It can also be used to debug user-mode crash dumps. This is known as post-mortem debugging.[3]
WinDbg can automatically load debugging symbol files (e.g., PDB files) from a server by matching various criteria (e.g., timestamp, CRC, single or multiprocessor version) via SymSrv (SymSrv.dll),[4] instead of the more time-consuming task of creating a symbol tree for a debugging target environment. If a private symbol server is configured, the symbols can be correlated with the source code for the binary. This eases the burden of debugging problems that have various versions of binaries installed on the debugging target by eliminating the need for finding and installing specific symbols version on the debug host. Microsoft has a public symbol server that has most of the public symbols for Windows 2000 and later versions of Windows (including service packs).[5]
Recent versions of WinDbg have been and are being distributed as part of the free Debugging Tools for Windows suite, which shares a common debugging back-end between WinDbg and command line debugger front-ends like KD, CDB, and NTSD. Most commands can be used as is with all the included debugger front-ends.
What’s New in Version 10.0.18362.0 See changelog
Released
No changelog available for this version.