You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: guides/windbg.md
+12-1Lines changed: 12 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,7 +1,7 @@
1
1
---
2
2
layout: page
3
3
title: WinDbg usage guide
4
-
date: 2025-05-25 08:00:00 +0200
4
+
date: 2026-02-20 08:00:00 +0200
5
5
redirect_from:
6
6
- /guides/using-ttd/
7
7
- /guides/using-windbg/
@@ -89,6 +89,7 @@ redirect_from:
89
89
-[Running a command for all the processes](#running-a-command-for-all-the-processes)
90
90
-[Attaching to multiple processes at once](#attaching-to-multiple-processes-at-once)
91
91
-[Injecting a DLL into a process being debugged](#injecting-a-dll-into-a-process-being-debugged)
92
+
-[Save and reopen formatted WinDbg output](#save-and-reopen-formatted-windbg-output)
92
93
93
94
<!-- /MarkdownTOC -->
94
95
@@ -1764,4 +1765,14 @@ lm
1764
1765
# ...
1765
1766
```
1766
1767
1768
+
### Save and reopen formatted WinDbg output
1769
+
1770
+
Sometimes you may want to persist debugger output while preserving DML tags. This is achieved using the **Save Window to File** button in the **Command** ribbon tab. The resulting file uses a .dml extension; opening it in a text editor confirms that the markup remains intact.
1771
+
1772
+
To reload this output into a new WinDbg command window, use the `.dml_start` command:
0 commit comments