Select a product
- Select a category.
Disallow On Slow Connections Only Download Headers
This policy setting allows you to turn off the "On Slow Connections Download Only Headers" option.
If you enable this policy setting, you will turn off the "On Slow Connections Download Only Headers" option in the Download Preferences menu in the Send/Receive tab.
If you disable or do not configure this policy setting, you will allow the "On Slow Connections Download Only Headers" option in the Download Preferences menu in the Send/Receive tab.
Registry Information
| Vendor | Microsoft |
|---|---|
| Product | Microsoft Outlook 2016 |
| Category | Microsoft Outlook 2016 › Account Settings › Exchange › Cached Exchange Mode |
| Applies to | User Configuration |
| Supported on | Windows7 |
| Registry Key | [HKCU]softwarepoliciesmicrosoftoffice16.0outlookcached mode |
| Value Name | noslowheaders |
| Type | REG_DWORD |
| Enabled value | 1 |
| Disabled value | 0 |
Registry File (.reg)
Windows Registry Editor Version 5.00
; Enable the policy
[HKEY_CURRENT_USERsoftwarepoliciesmicrosoftoffice16.0outlookcached mode]
"noslowheaders"=dword:00000001
; Disable the policy
[HKEY_CURRENT_USERsoftwarepoliciesmicrosoftoffice16.0outlookcached mode]
"noslowheaders"=dword:00000000PowerShell
# Enable the policy
Set-ItemProperty -Path "HKCU:softwarepoliciesmicrosoftoffice16.0outlookcached mode" -Name "noslowheaders" -Value 1 -Type DWord
# Disable the policy
Set-ItemProperty -Path "HKCU:softwarepoliciesmicrosoftoffice16.0outlookcached mode" -Name "noslowheaders" -Value 0 -Type DWord