GPO tool

Group Policy made searchable

A free ADMX browser or comparison tool for IT administrators.Search policies, find registry keys, and see exactly what each setting writes to the Windows Registry. Or compare two GPO backups to see exactly what has changed between them.

Select a product
  • 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

VendorMicrosoft
ProductMicrosoft OneNote 2016
CategoryMicrosoft OneNote 2016 › OneNote Options › Other
Applies toUser Configuration
Supported onWindows 6 3 NOARM
Registry Key[HKCU]softwarepoliciesmicrosoftoffice16.0onenotegeneral
Value Namedisablesupportdiagnostics
TypeREG_DWORD
Enabled value1
Disabled value0

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:00000000

PowerShell

# 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