- Select a category.
Turn off support diagnostics in OneNote
This policy setting controls whether OneNote sends client information to support services on failure.
Sending client information to support services on failure can help diagnose the issue, provide resolution steps, or show contextual error messaging to the user.
If you enable this policy setting, OneNote won’t send client information to support services on failure.
If you disable or don’t configure this policy setting, OneNote will send client information to support services on failure.
Note: This policy setting only applies to Version 2207 and later of OneNote.
Registry Information
| Vendor | Microsoft |
|---|---|
| Product | Microsoft OneNote 2016 |
| Category | Microsoft OneNote 2016 › OneNote Options › Other |
| Applies to | User Configuration |
| Supported on | Windows 6 3 NOARM |
| Registry Key | [HKCU]softwarepoliciesmicrosoftoffice16.0onenotegeneral |
| Value Name | disablesupportdiagnostics |
| Type | REG_DWORD |
| Enabled value | 1 |
| Disabled value | 0 |
Registry File (.reg)
Windows Registry Editor Version 5.00
; Enable the policy
[HKEY_CURRENT_USERsoftwarepoliciesmicrosoftoffice16.0onenotegeneral]
"disablesupportdiagnostics"=dword:00000001
; Disable the policy
[HKEY_CURRENT_USERsoftwarepoliciesmicrosoftoffice16.0onenotegeneral]
"disablesupportdiagnostics"=dword:00000000PowerShell
# Enable the policy
Set-ItemProperty -Path "HKCU:softwarepoliciesmicrosoftoffice16.0onenotegeneral" -Name "disablesupportdiagnostics" -Value 1 -Type DWord
# Disable the policy
Set-ItemProperty -Path "HKCU:softwarepoliciesmicrosoftoffice16.0onenotegeneral" -Name "disablesupportdiagnostics" -Value 0 -Type DWord