Skip to content

Commit df35fbd

Browse files
committed
touchups
1 parent a9b96ab commit df35fbd

File tree

2 files changed

+12
-5
lines changed

2 files changed

+12
-5
lines changed

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

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@ ms.workload:
1818

1919
Just-In-Time debugging can launch Visual Studio automatically when an app running outside Visual Studio errors or crashes. With Just-In-Time debugging, you can test apps outside of Visual Studio, and open Visual Studio to begin debugging when a problem occurs.
2020

21-
> Just-In-Time debugging works for Windows desktop apps. It does not work for Universal Windows Apps, or for managed code that is hosted in a native application, such as Visualizers.
21+
Just-In-Time debugging works for Windows desktop apps. It does not work for Universal Windows Apps, or for managed code that is hosted in a native application, such as Visualizers.
2222

2323
> [!TIP]
24-
> If you just want to stop the Just-In-Time Debugger dialog box from appearing but don't have Visual Studio installed, see [Disable the Just-In-Time Debugger](../debugger/just-in-time-debugging-in-visual-studio.md). If you once had Visual Studio installed, you may need to [disable Just-In-Time debugging from the Windows registry](#disable-just-in-time-debugging-from-the-windows-registry).
24+
> If you just want to stop the Just-In-Time Debugger dialog box from appearing, but don't have Visual Studio installed, see [Disable the Just-In-Time Debugger](../debugger/just-in-time-debugging-in-visual-studio.md). If you once had Visual Studio installed, you may need to [disable Just-In-Time debugging from the Windows registry](#disable-just-in-time-debugging-from-the-windows-registry).
2525
2626
## <a name="BKMK_Enabling"></a> Enable or disable Just-In-Time debugging in Visual Studio
2727

@@ -151,14 +151,21 @@ If Just-In-Time debugging doesn't start when an app crashes, even though it is e
151151

152152
To fix this issue, use Registry Editor to add a **DWORD Value** of **Disabled**, with **Value data** of **1**, to the following registry keys:
153153

154+
155+
154156
- **HKEY_LOCAL_MACHINE\Software\Microsoft\Windows\Windows Error Reporting**
157+
155158
- (For 64-bit machines): **HKEY_LOCAL_MACHINE\Software\WOW6432Node\Microsoft\Windows\Windows Error Reporting**
156159

157160
For more information, see [.WER settings](https://docs.microsoft.com/windows/desktop/wer/wer-settings).
158-
159-
- A known Windows issue may be causing the Just-In-Time debugger to fail. The fix is to a **DWORD Value** of **Auto**, with **Value data** of **1**, to the following registry keys:
161+
162+
- A known Windows issue may be causing the Just-In-Time debugger to fail.
163+
164+
The fix is to add a **DWORD Value** of **Auto**, with **Value data** of **1**, to the following registry keys:
165+
160166

161167
- **HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\AeDebug**
168+
162169
- (For 64-bit machines): **HKEY_LOCAL_MACHINE\Software\WOW6432Node\Microsoft\Windows NT\CurrentVersion\AeDebug**
163170

164171
You might see the following error messages during Just-In-Time debugging:

docs/debugger/how-to-enable-and-disable-edit-and-continue.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ For native C++, **Edit and Continue** requires using the `/INCREMENTAL` option.
3838

3939
1. If you're in a debugging session, stop debugging (**Debug** > **Stop Debugging** or **Shift**+**F5**).
4040

41-
1. In **Tools** > **Options** > **Debugging** (or **Debug** > **Options**) > **General**, select **Edit and Continue** in the right pane.
41+
1. In **Tools** > **Options** > (or **Debug** > **Options**) > **Debugging** > **General**, select **Edit and Continue** in the right pane.
4242

4343
> [!NOTE]
4444
> If IntelliTrace is enabled and you collect both IntelliTrace events and call information, Edit and Continue is disabled. For more information, see [IntelliTrace](../debugger/intellitrace.md).

0 commit comments

Comments
 (0)