Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
26 changes: 26 additions & 0 deletions exchange/exchange-ps/exchange/Remove-MailboxFolderPermission.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ For information about the parameter sets in the Syntax section below, see [Excha

```
Remove-MailboxFolderPermission [-Identity] <MailboxFolderIdParameter> -User <MailboxFolderUserIdParameter>
[-ResetDelegateUserCollection]
[-Confirm]
[-DomainController <Fqdn>]
[-WhatIf]
Expand All @@ -42,6 +43,13 @@ Remove-MailboxFolderPermission -Identity [email protected]:\Training -User john@co

This example removes John's permissions to the Training folder in Kim's mailbox.

### Example 2
```powershell
Remove-MailboxFolderPermission -Identity [email protected]:\Calendar -ResetDelegateUserCollection
```

This example will clear any corrupted delegate information from Kim’s mailbox.

## PARAMETERS

### -Identity
Expand Down Expand Up @@ -149,6 +157,24 @@ Accept pipeline input: False
Accept wildcard characters: False
```

### -ResetDelegateUserCollection
This parameter is available only in the cloud-based service.

The ResetDelegateUserCollection switch can only be used together with -Identity parameter, and the value of Identity should be the user's primary calendar folder, for example, [email protected]:\Calendar. If you run into a problem when trying to add, change, or remove delegate permissions, it is possible that the delegate information stored in the LocalFreeBusy item or the PR_FREEBUSY_ENTRYIDS has become corrupted. Including this switch will delete those files and will downgrade any existing Delegates to Editor status. You will need to grant Delegate permissions again using -SharingPermissionFlag Delegate.

```yaml
Type: SwitchParameter
Parameter Sets: (All)
Aliases:
Applicable: Exchange Online

Required: False
Position: Named
Default value: None
Accept pipeline input: False
Accept wildcard characters: False
```

### -SendNotificationToUser
This parameter is available only in the cloud-based service.

Expand Down