Applies to: Exchange Server 2010 SP2
Topic Last Modified: 2011-05-04
Use the Get-RecipientEnforcementProvisioningPolicy cmdlet to get information about provisioning policies.
Syntax
Get-RecipientEnforcementProvisioningPolicy [-Identity
<ProvisioningPolicyIdParameter>] [-DomainController
<Fqdn>] [-Organization
<OrganizationIdParameter>]
|
Detailed Description
With recipient enforcement provisioning policies, you can set and enforce limits on the maximum number of objects that a tenant administrator can create in the tenant organization. You can limit the number of distribution groups, dynamic distribution groups, mailboxes, mail users, and mail contacts.
For more information, see Managing Recipient Provisioning Policies.
This cmdlet is available only for multi-tenant deployments.
Parameters
Parameter | Required | Type | Description |
---|---|---|---|
DomainController |
Optional |
Microsoft.Exchange.Data.Fqdn |
The DomainController parameter specifies the fully qualified domain name (FQDN) of the domain controller that retrieves data from Active Directory. |
Identity |
Optional |
Microsoft.Exchange.Configuration.Tasks.ProvisioningPolicyIdParameter |
The Identity parameter specifies the identity of the provisioning policy. This parameter accepts the following syntax: "<Organization>\Recipient Quota Policy" For example, if you want view the policy for Contoso, use the following: "Contoso\Recipient Quota Policy" |
Organization |
Optional |
Microsoft.Exchange.Configuration.Tasks.OrganizationIdParameter |
The Organization parameter specifies the tenant organization for which you want to view the provisioning policy. This parameter doesn't accept wildcard characters, and you must use the exact name of the organization. |
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 returns the default information about the recipient provisioning policy for the tenant organization Contoso. The default information includes the identity, scope, and distribution list count quota.
Copy Code | |
---|---|
Get-RecipientEnforcementProvisioningPolicy -Organization "Contoso" |
EXAMPLE 2
This example returns additional information about the recipient provisioning policy by pipelining the Get-RecipientEnforcementProvisioningPolicy cmdlet results for all policies with the identity Contoso\Recipient Quota Policy to the Format-List cmdlet. The additional information includes the default information plus the mailbox count quota, mail-enabled user count quota, and contact count quota.
Copy Code | |
---|---|
Get-RecipientEnforcementProvisioningPolicy -Identity "Contoso\Recipient Quota Policy" | Format-List |