Applies to: Exchange Server 2010 SP2
Topic Last Modified: 2011-05-04
Use the Get-Organization cmdlet to get information about tenant organizations.
Syntax
Get-Organization [-Identity
<OrganizationIdParameter>] [-DomainController <Fqdn>]
[-Filter <String>] [-ForReconciliation
<SwitchParameter>] [-ResultSize <Unlimited>]
|
Detailed Description
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. |
Filter |
Optional |
System.String |
This parameter is reserved for internal Microsoft use. |
ForReconciliation |
Optional |
System.Management.Automation.SwitchParameter |
This parameter is reserved for internal Microsoft use. |
Identity |
Optional |
Microsoft.Exchange.Configuration.Tasks.OrganizationIdParameter |
The Identity parameter specifies the identity of the tenant organization. |
ResultSize |
Optional |
Microsoft.Exchange.Data.Unlimited |
This parameter is reserved for internal Microsoft use. |
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 name of all tenant organizations.
Copy Code | |
---|---|
Get-Organization | Format-Table name |
EXAMPLE 2
This example returns basic information about the tenant organization Contoso.
Copy Code | |
---|---|
Get-Organization -Identity Contoso |
EXAMPLE 3
This example returns detailed information about the tenant organization Contoso.
Copy Code | |
---|---|
Get-Organization -Identity Contoso | Format-List |