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.

Store deleted items in owner’s mailbox instead of delegate’s mailbox

This policy setting allows you to store deleted items in the owner's mailbox instead of the delegate's mailbox.

If you enable this policy setting, deleted items are stored in the owner's Deleted Items folder. For this setting to work correctly, the owner must also give the delegate permission to write to the owner's Deleted Items folder.

If you disable or do not configure this policy setting, items deleted by a delegate are stored in the delegate's Deleted Items Folder instead of the owner's Deleted Items folder.

Registry Information

VendorMicrosoft
ProductMicrosoft Outlook 2016
CategoryMicrosoft Outlook 2016 › Outlook Options › Delegates
Applies toUser Configuration
Supported onWindows7
Registry Key[HKCU]softwarepoliciesmicrosoftoffice16.0outlookoptionsgeneral
Value Namedelegatewastebasketstyle
TypeREG_DWORD
Enabled value4
Disabled value8

Registry File (.reg)

Windows Registry Editor Version 5.00

; Enable the policy
[HKEY_CURRENT_USERsoftwarepoliciesmicrosoftoffice16.0outlookoptionsgeneral]
"delegatewastebasketstyle"=dword:00000004

; Disable the policy
[HKEY_CURRENT_USERsoftwarepoliciesmicrosoftoffice16.0outlookoptionsgeneral]
"delegatewastebasketstyle"=dword:00000008

PowerShell

# Enable the policy
Set-ItemProperty -Path "HKCU:softwarepoliciesmicrosoftoffice16.0outlookoptionsgeneral" -Name "delegatewastebasketstyle" -Value 4 -Type DWord

# Disable the policy
Set-ItemProperty -Path "HKCU:softwarepoliciesmicrosoftoffice16.0outlookoptionsgeneral" -Name "delegatewastebasketstyle" -Value 8 -Type DWord