Applies to: Exchange Server 2007
Topic Last Modified: 2007-06-11

The Get-UMAutoAttendant cmdlet retrieves the properties and the values for a Unified Messaging (UM) auto attendant.

Syntax

Get-UMAutoAttendant [-Identity <UMAutoAttendantIdParameter>] [-DomainController <Fqdn>]

Parameters

Parameter Required Type Description

DomainController

Optional

Microsoft.Exchange.Data.Fqdn

To specify the fully qualified domain name (FQDN) of the domain controller that writes this configuration change to the Active Directory directory service, include the DomainController parameter on the cmdlet.

Identity

Optional

Microsoft.Exchange.Configuration.Tasks.UMAutoAttendantIdParameter

This parameter specifies the identifier for the UM auto attendant that is being viewed. This is the directory object ID for the UM auto attendant.

Detailed Description

The Get-UMAutoAttendant cmdlet retrieves the properties for a single UM auto attendant or for a list of UM auto attendants. If no parameter is supplied with the cmdlet, the cmdlet will return all UM auto attendants in the Active Directory directory service forest. If the UM dial plan ID is supplied but no name is supplied, the cmdlet will return all UM auto attendants that are linked to the UM dial plan.

To run the Get-UMAutoAttendant cmdlet, the account you use must be delegated the following:

  • Exchange View-Only Administrator role

For more information about permissions, delegating roles, and the rights that are required to administer Exchange Server 2007, see Permission Considerations.

Input Types

Return Types

Errors

Error Description

 

 

Exceptions

Exceptions Description

 

 

Example

The first code example returns a formatted list of all UM auto attendants in the Active Directory forest.

The second code example displays the properties of a UM auto attendant named MyUMAutoAttendant.

Copy Code
Get-UMAutoAttendant | Format-List

Get-UMAutoAttendant -Identity MyUMAutoAttendant