Specify list of social network providers to load
This policy setting determines the list of social network providers that are loaded by the Outlook Social Connector.
If you enable this policy setting, you may enter a list of provider progIDs of social network providers that will be loaded by the Outlook Social Connector. This list needs to be semi-colon delimited. Note that if you enable this policy setting, only social network providers that are on this list will be loaded by the Outlook Social Connector. No other social network providers will be loaded.
If you disable or you do not configure this policy setting, the Outlook Social Connector can load any provider specified by the user.
Registry Information
| Vendor | Microsoft |
|---|
| Product | Microsoft Outlook 2016 |
|---|
| Category | Microsoft Outlook 2016 › Outlook Social Connector |
|---|
| Applies to | User Configuration |
|---|
| Supported on | Windows7 |
|---|
| Registry Key | [HKCU]softwarepoliciesmicrosoftofficeoutlooksocialconnector |
|---|
| Value Name | providersecuritymode |
|---|
| Type | REG_DWORD |
|---|
| Enabled value | 1 |
|---|
| Disabled value | 0 |
|---|
Policy Settings
Separate ProgIDs with semi-colons
| Registry Key | [HKCU]softwarepoliciesmicrosoftofficeoutlooksocialconnector |
|---|
| Value Name | trustedproviderslist |
|---|
| Type | REG_SZ |
|---|
Registry File (.reg)
Windows Registry Editor Version 5.00
; Enable the policy
[HKEY_CURRENT_USERsoftwarepoliciesmicrosoftofficeoutlooksocialconnector]
"providersecuritymode"=dword:00000001
; Disable the policy
[HKEY_CURRENT_USERsoftwarepoliciesmicrosoftofficeoutlooksocialconnector]
"providersecuritymode"=dword:00000000
PowerShell
# Enable the policy
Set-ItemProperty -Path "HKCU:softwarepoliciesmicrosoftofficeoutlooksocialconnector" -Name "providersecuritymode" -Value 1 -Type DWord
# Disable the policy
Set-ItemProperty -Path "HKCU:softwarepoliciesmicrosoftofficeoutlooksocialconnector" -Name "providersecuritymode" -Value 0 -Type DWord