GPO tool

Group Policy made searchable

A free ADMX browser or comparison tool for IT administrators.Search policies, find registry keys, and see exactly what each setting writes to the Windows Registry. Or compare two GPO backups to see exactly what has changed between them.

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

VendorMicrosoft
ProductMicrosoft Outlook 2016
CategoryMicrosoft Outlook 2016 › Account Settings › Exchange › Cached Exchange Mode
Applies toUser Configuration
Supported onWindows7
Registry Key[HKCU]softwarepoliciesmicrosoftoffice16.0outlookcached mode
Value Namenoslowheaders
TypeREG_DWORD
Enabled value1
Disabled value0

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:00000000

PowerShell

# 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