Skip to content

Commit 83a3df8

Browse files
Merge pull request #10439 from MicrosoftDocs/main638640938436330738sync_temp
For protected branch, push strategy should use PR and merge to target branch method to work around git push error
2 parents 3e1a177 + e359c91 commit 83a3df8

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

docs/debugger/debug-using-the-just-in-time-debugger.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Debug using the Just-In-Time Debugger
33
description: Debug using the Just-In-Time Debugger in Visual Studio. Just-In-Time debugging can launch Visual Studio automatically when an app returns errors or crashes.
4-
ms.date: 11/29/2023
4+
ms.date: 10/09/2024
55
ms.topic: how-to
66
helpviewer_keywords:
77
- debugging [Visual Studio], Just-In-Time
@@ -153,17 +153,17 @@ If Just-In-Time debugging doesn't start when an app crashes, even though it's en
153153

154154
The fix is to add a **DWORD Value** of **Auto**, with **Value data** of **1**, to the following registry keys:
155155

156-
- **HKEY_LOCAL_MACHINE\Software\WOW6432Node\Microsoft\Windows NT\CurrentVersion\AeDebug**
156+
- **HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AeDebug**
157157

158-
- (For 32-bit machines) **HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AeDebug**
158+
- (For 32-bit apps on 64-bit machines) **HKEY_LOCAL_MACHINE\Software\WOW6432Node\Microsoft\Windows NT\CurrentVersion\AeDebug**
159159

160160
- Windows Error Reporting could be taking over the error handling on your computer.
161161

162162
To fix this issue, use Registry Editor to add a **DWORD Value** of **Disabled**, with **Value data** of **1**, to the following registry keys:
163-
164-
- **HKEY_LOCAL_MACHINE\Software\WOW6432Node\Microsoft\Windows\Windows Error Reporting**
165163

166-
- (For 32-bit machines) **HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Windows Error Reporting**
164+
- **HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Windows Error Reporting**
165+
166+
- (For 32-bit apps on 64-bit machines) **HKEY_LOCAL_MACHINE\Software\WOW6432Node\Microsoft\Windows\Windows Error Reporting**
167167

168168
For more information, see [.WER settings](/windows/desktop/wer/wer-settings).
169169

docs/debugger/diagnostic-messages-in-the-output-window.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ You can write run-time messages to the **Output** window using the <xref:System.
2828
## Output methods
2929
The <xref:System.Diagnostics.Trace> and <xref:System.Diagnostics.Debug> classes provide the following output methods:
3030

31-
- Various [Write](/dotnet/api/system.diagnostics.debug#methods) methods, which output information without breaking execution. These methods replace the `Debug.Print` method used in previous versions of Visual Basic.
31+
- Various [Write](/dotnet/api/system.diagnostics.debug#methods) methods, which output information without breaking execution. These methods replace the `Debug.Print` method used in older versions of Visual Basic.
3232

3333
- <xref:System.Diagnostics.Debug.Assert%2A?displayProperty=fullName> and <xref:System.Diagnostics.Trace.Assert%2A?displayProperty=fullName> methods, which break execution and output information if a specified condition fails. By default, the `Assert` method displays the information in a dialog box. For more information, see [Assertions in managed code](../debugger/assertions-in-managed-code.md).
3434

0 commit comments

Comments
 (0)