Select a product
- Select a category.
Auto Numbering Recognition
Checks/Unchecks the option ''Apply numbering to lists automatically''.
Registry Information
| Vendor | Microsoft |
|---|---|
| Product | Microsoft OneNote 2016 |
| Category | Microsoft OneNote 2016 › OneNote Options › Editing |
| Applies to | User Configuration |
| Supported on | Windows7 |
| Registry Key | [HKCU]softwarepoliciesmicrosoftoffice16.0onenoteoptionsediting |
| Value Name | numbering auto reco |
| Type | REG_DWORD |
| Enabled value | 1 |
| Disabled value | 0 |
Registry File (.reg)
Windows Registry Editor Version 5.00
; Enable the policy
[HKEY_CURRENT_USERsoftwarepoliciesmicrosoftoffice16.0onenoteoptionsediting]
"numbering auto reco"=dword:00000001
; Disable the policy
[HKEY_CURRENT_USERsoftwarepoliciesmicrosoftoffice16.0onenoteoptionsediting]
"numbering auto reco"=dword:00000000PowerShell
# Enable the policy
Set-ItemProperty -Path "HKCU:softwarepoliciesmicrosoftoffice16.0onenoteoptionsediting" -Name "numbering auto reco" -Value 1 -Type DWord
# Disable the policy
Set-ItemProperty -Path "HKCU:softwarepoliciesmicrosoftoffice16.0onenoteoptionsediting" -Name "numbering auto reco" -Value 0 -Type DWord