- 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
| Vendor | Microsoft |
|---|---|
| Product | Microsoft Outlook 2016 |
| Category | Microsoft Outlook 2016 › Outlook Options › Delegates |
| Applies to | User Configuration |
| Supported on | Windows7 |
| Registry Key | [HKCU]softwarepoliciesmicrosoftoffice16.0outlookoptionsgeneral |
| Value Name | delegatewastebasketstyle |
| Type | REG_DWORD |
| Enabled value | 4 |
| Disabled value | 8 |
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:00000008PowerShell
# 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