Select a product
- Select a category.
Turn off link creation with [[ ]]
This policy setting allows you to turn off link creation with [[ ]]. OneNote allows users to automatically create links by putting [[ ]] around a term. OneNote will then automatically create a new page in that section and create a link on that text.
If you enable this policy setting, users will not be able to use [[ ]] to create a link and a new page.
If you disable or do not configure this policy setting, OneNote will automatically create links when users use [[ ]].
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 | wikilink |
| Type | REG_DWORD |
| Enabled value | 0 |
| Disabled value | 1 |
Registry File (.reg)
Windows Registry Editor Version 5.00
; Enable the policy
[HKEY_CURRENT_USERsoftwarepoliciesmicrosoftoffice16.0onenoteoptionsediting]
"wikilink"=dword:00000000
; Disable the policy
[HKEY_CURRENT_USERsoftwarepoliciesmicrosoftoffice16.0onenoteoptionsediting]
"wikilink"=dword:00000001PowerShell
# Enable the policy
Set-ItemProperty -Path "HKCU:softwarepoliciesmicrosoftoffice16.0onenoteoptionsediting" -Name "wikilink" -Value 0 -Type DWord
# Disable the policy
Set-ItemProperty -Path "HKCU:softwarepoliciesmicrosoftoffice16.0onenoteoptionsediting" -Name "wikilink" -Value 1 -Type DWord