- Select a category.
Disable Trust Bar Notification for unsigned application add-ins and block them
This policy setting controls whether the specified Office application notifies users when unsigned application add-ins are loaded or silently disable such add-ins without notification. This policy setting only applies if you enable the "Require that application add-ins are signed by Trusted Publisher" policy setting, which prevents users from changing this policy setting.
If you enable this policy setting, applications automatically disable unsigned add-ins without informing users.
If you disable this policy setting, if this application is configured to require that all add-ins be signed by a trusted publisher, any unsigned add-ins the application loads will be disabled and the application will display the Trust Bar at the top of the active window. The Trust Bar contains a message that informs users about the unsigned add-in.
If you do not configure this policy setting, the disable behavior applies, and in addition, users can configure this requirement themselves in the "Add-ins" category of the Trust Center for the application.
Registry Information
| Vendor | Microsoft |
|---|---|
| Product | Microsoft Visio 2016 |
| Category | Microsoft Visio 2016 › Visio Options › Security › Trust Center |
| Applies to | User Configuration |
| Supported on | Windows7 |
| Registry Key | [HKCU]softwarepoliciesmicrosoftoffice16.0visiosecurity |
| Value Name | notbpromptunsignedaddin |
| Type | REG_DWORD |
| Enabled value | 1 |
| Disabled value | 0 |
Registry File (.reg)
Windows Registry Editor Version 5.00
; Enable the policy
[HKEY_CURRENT_USERsoftwarepoliciesmicrosoftoffice16.0visiosecurity]
"notbpromptunsignedaddin"=dword:00000001
; Disable the policy
[HKEY_CURRENT_USERsoftwarepoliciesmicrosoftoffice16.0visiosecurity]
"notbpromptunsignedaddin"=dword:00000000PowerShell
# Enable the policy
Set-ItemProperty -Path "HKCU:softwarepoliciesmicrosoftoffice16.0visiosecurity" -Name "notbpromptunsignedaddin" -Value 1 -Type DWord
# Disable the policy
Set-ItemProperty -Path "HKCU:softwarepoliciesmicrosoftoffice16.0visiosecurity" -Name "notbpromptunsignedaddin" -Value 0 -Type DWord