[This topic is in progress.]

Applies to: Exchange Server 2010 SP2

Topic Last Modified: 2011-05-04

This cmdlet is available only in the cloud-based service.

Use the Get-RecipientPermission cmdlet to view information about SendAs permissions that are configured for users in a cloud-based organization.

Syntax

Get-RecipientPermission [-Identity <RecipientIdParameter>] [-AccessRights <MultiValuedProperty>] [-DomainController <Fqdn>] [-ReadFromDomainController <SwitchParameter>] [-ResultSize <Unlimited>] [-Trustee <SecurityPrincipalIdParameter>]

Detailed Description

When a user is given SendAs permission to another user or group, the user can send messages that appear to come from the other user or group.

Parameters

Parameter Required Type Description

Identity

Optional

Microsoft.Exchange.Configuration.Tasks.RecipientIdParameter

The Identity parameter filters the results by the target recipient. The user or group specified by the Trustee parameter can operate on this recipient.

You can specify any type of recipient. For example:

  • Mailboxes

  • Mail users

  • External contacts

  • Distribution groups

  • Dynamic distribution groups

You can use any value that uniquely identifies the recipient.

For example:

  • Alias

  • Distinguished name (DN)

  • GUID

  • Name

  • Display name

  • LegacyExchangeDN

  • E-mail address

AccessRights

Optional

Microsoft.Exchange.Data.MultiValuedProperty

The AccessRights parameter filters the results by permission.

Valid input for this parameter is SendAs.

DomainController

Optional

Microsoft.Exchange.Data.Fqdn

This parameter is available for multi-tenant deployments. It isn't available for on-premises deployments. For more information about multi-tenant deployments, see Multi-Tenant Support.

The DomainController parameter specifies the fully qualified domain name (FQDN) of the domain controller that retrieves data from Active Directory.

ReadFromDomainController

Optional

System.Management.Automation.SwitchParameter

This parameter is reserved for internal Microsoft use.

ResultSize

Optional

Microsoft.Exchange.Data.Unlimited

The ResultSize parameter specifies the maximum number of results to return.

Trustee

Optional

Microsoft.Exchange.Configuration.Tasks.SecurityPrincipalIdParameter

The Trustee parameter filters the results by the user or group to whom you're granting the permission. The user or group can operate on the recipient specified by the Identity parameter.

You can specify the following types of users or groups:

  • Mailbox users

  • Mail users with a Windows Live ID

  • Security groups

You can use any value that uniquely identifies the user or group.

For example:

  • Alias

  • Distinguished name (DN)

  • GUID

  • Name

  • Display name

  • LegacyExchangeDN

  • E-mail address

Input Types

To see the input types that this cmdlet accepts, see Cmdlet Input and Output Types. If the Input Type field for a cmdlet is blank, the cmdlet doesn’t accept input data.

Return Types

To see the return types, which are also known as output types, that this cmdlet accepts, see Cmdlet Input and Output Types. If the Output Type field is blank, the cmdlet doesn’t return data.

Errors

Error Description

 

Examples

EXAMPLE 1

This example lists the recipients for whom the user named "Kim Akers" has SendAs permission. Kim can send messages that appear to come directly from the recipients.

Copy Code
Get-RecipientPermission -Trustee "Kim Akers"

EXAMPLE 2

This example lists the users who have SendAs permission on the mailbox named "Help Desk". The users listed can send messages that appear to come directly from the "Help Desk" mailbox.

Copy Code
Get-RecipientPermission "Help Desk"