Applies to: Exchange Server 2010 SP3, Exchange Server 2010 SP2
Topic Last Modified: 2012-12-27
Use the Get-UMHuntGroup cmdlet to display the properties and values for an existing Unified Messaging (UM) hunt group.
Syntax
Get-UMHuntGroup [-Identity
<UMHuntGroupIdParameter>] [-DomainController <Fqdn>]
[-Organization <OrganizationIdParameter>] [-UMDialPlan
<UMDialPlanIdParameter>]
|
Detailed Description
The Get-UMHuntGroup cmdlet retrieves the properties for a single UM hunt group or a list of UM hunt groups. When you’re using the Get-UMHuntGroup cmdlet, you can’t enter only the name of the UM hunt group. You must also include the name of the UM IP gateway that’s associated with the UM hunt group. For example, Get-UMHuntGroup MyUMIPGateway\MyUMHuntGroup1.
After this task is completed, if the Identity parameter is specified, the properties for the UM hunt group are returned. If neither the Identity nor the UMDialPlan parameter is specified, all UM hunt groups in the Active Directory forest are returned.
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 "UM hunt groups" entry in the Unified Messaging 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. |
Identity |
Optional |
Microsoft.Exchange.Configuration.Tasks.UMHuntGroupIdParameter |
The Identity parameter specifies the identifier for the UM hunt group being viewed. This is the directory object ID for the UM hunt group. |
Organization |
Optional |
Microsoft.Exchange.Configuration.Tasks.OrganizationIdParameter |
The Organization parameter is reserved for internal Microsoft use. |
UMDialPlan |
Optional |
Microsoft.Exchange.Configuration.Tasks.UMDialPlanIdParameter |
The UMDialPlan parameter specifies the UM dial plan associated with a UM hunt group. |
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 displays all the UM hunt groups in the Active Directory forest.
Copy Code | |
---|---|
Get-UMHuntGroup |
EXAMPLE 2
This example displays the details of the UM hunt group MyUMHuntGroup in a formatted list.
Copy Code | |
---|---|
Get-UMHuntGroup -identity MyUMIPGateway\MyUMHuntGroup | Format-List |
EXAMPLE 3
This example displays all of the UM hunt groups that are associated with the UM dial plan MyUMDialPlan.
Copy Code | |
---|---|
Get-UMHuntGroup -UMDialPlan MyUMDialPlan |