Applies to: Exchange Server 2010 SP3, Exchange Server 2010 SP2
Topic Last Modified: 2012-11-19
Use the Get-ManagementScope cmdlet to return a list of management scopes.
Syntax
Get-ManagementScope [-Identity
<ManagementScopeIdParameter>] [-DomainController
<Fqdn>] [-Exclusive <$true | $false>] [-Organization
<OrganizationIdParameter>] [-Orphan
<SwitchParameter>]
|
Detailed Description
You can retrieve one scope or many, retrieve only scopes that aren't associated with management role assignments, or retrieve scopes that are exclusive or regular scopes.
For more information about regular and exclusive scopes, see Understanding Management Role Scopes.
You need to be assigned permissions before you can run this cmdlet. Although all parameters for this cmdlet are listed in this topic, you may not have access to some parameters if they're not included in the permissions assigned to you. To see what permissions you need, see the "Management scopes" entry in the Role Management Permissions topic.
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. |
Exclusive |
Optional |
System.Boolean |
The Exclusive parameter specifies whether exclusive
scopes should be returned. If the Exclusive parameter isn't
specified, regular scopes and exclusive scopes are returned. If the
Exclusive parameter is set to |
Identity |
Optional |
Microsoft.Exchange.Configuration.Tasks.ManagementScopeIdParameter |
The Identity parameter specifies the name of the management scope to return. If the management scope name contains spaces, enclose it in quotation marks ("). |
Organization |
Optional |
Microsoft.Exchange.Configuration.Tasks.OrganizationIdParameter |
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 Organization parameter specifies the organization in which you'll perform this action. This parameter doesn't accept wildcard characters, and you must use the exact name of the organization. |
Orphan |
Optional |
System.Management.Automation.SwitchParameter |
The Orphan parameter returns only the management scopes that aren't associated with role assignments. |
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.
Examples
EXAMPLE 1
This example retrieves all the management scopes that start with the string Redmond.
Copy Code | |
---|---|
Get-ManagementScope Redmond* |
EXAMPLE 2
This example retrieves the Redmond Servers Scope using the Get-ManagementScope cmdlet and pipes the output to the Format-List cmdlet. For more information about the Format-List cmdlet, see Working with Command Output.
Copy Code | |
---|---|
Get-ManagementScope "Redmond Servers Scope" | Format-List |
EXAMPLE 3
This example retrieves a list of management scopes that aren't associated with any role assignments.
Copy Code | |
---|---|
Get-ManagementScope -Orphan |
EXAMPLE 4
This example retrieves a list of exclusive scopes.
Copy Code | |
---|---|
Get-ManagementScope -Exclusive $True |