Published:
Aug 11, 2025
|
Modified:
|
6
min read

How to Set Up Teams Auto Attendant in Microsoft 365

Vasil Michev
Vasil is a nine-time Microsoft MVP and expert with over a decade of experience in Microsoft cloud, lifecycle management, migration, adoption, and automation.

Auto attendants in Microsoft Teams streamline call routing, enhance caller experience, and ensure that customers and colleagues reach the right person or department quickly. There are three ways to set up auto attendant in Microsoft Teams:

Method 1: Create a Teams Auto Attendant Using the Teams Admin Center

To set up an auto attendant in Microsoft Teams, follow these steps:

  • Log in to the Microsoft Teams admin center using your admin credentials.
  • From the left-hand navigation menu, select “Voice > Auto attendants”.
  • Click on the “Add” button to create a new auto attendant.
Auto Attendants screen
  • Enter a name for your auto attendant and select the language you want to use.
  • Choose the type of call handling you want your auto attendant to use
  • Set up your greetings and prompts by recording your own or using the default ones.
  • Assign the auto attendant to a phone number or a specific user in your organization.
Information input screen
  • Save your changes and test your auto attendant to ensure it's working correctly.

To set up an auto attendant in Microsoft Teams, you must have an active Microsoft Teams Phone System license. If you do not have this license, you will not be able to access the auto attendant feature.  

For more details, please refer to the “Set up Microsoft Teams auto attendant" article.

Method 2: Configure Teams Auto Attendant with PowerShell

You can create and configure a Teams auto attendant via PowerShell for advanced scenarios or automated deployment. The steps below use the MicrosoftTeams PowerShell module (v5.6 or later recommended):

Step 1: Connect to Microsoft Teams PowerShell

Connect-MicrosoftTeams

Step 2: Create a Resource Account for the Auto Attendant

New-CsResourceAccount -Name "Auto Attendant Main" -UserPrincipalName aamain@contoso.com -Type AutoAttendant

Step 3: Assign a Phone Number to the Resource Account

If using Calling Plan or Operator Connect:

Set-CsPhoneNumberAssignment -Identity aamain@contoso.com -PhoneNumber +1XXXXXXXXXX -PhoneNumberType CallingPlan
Replace +1XXXXXXXXXX with your actual phone number.

Step 4: Create the Auto Attendant, Menu, and Call Flow

First, create a greeting prompt (optional):

 $greeting = New-CsAutoAttendantPrompt -TextToSpeechPrompt "Thank you for calling Contoso. Please select from the following options."

Next, create a menu (for example, 1 for Sales, 2 for Support):

$sales = New-CsAutoAttendantMenuOption -DTMFResponse 1 -CallTargetType Person -CallTarget "user1@contoso.com"
$support = New-CsAutoAttendantMenuOption -DTMFResponse 2 -CallTargetType Person -CallTarget "user2@contoso.com"
$menu = New-CsAutoAttendantMenu -Name "Main Menu" -MenuOptions $sales,$support

Then, create the call flow:

$callFlow = New-CsAutoAttendantCallFlow -Menu $menu -Greetings $greeting

Now, create the auto attendant and associate it with the resource account:

New-CsAutoAttendant -Name "Contoso Main AA" -ResourceAccountList aamain@contoso.com -CallFlows $callFlow

Step 5: (Optional) Configure Business Hours, After Hours, and Holiday Routing

You can further configure separate call flows for business, after hours, or holidays using additional New-CsAutoAttendantCallFlow and schedule objects.

Method 3: Set Up Teams Auto Attendant in CoreView

  1. Navigate to the CoreView app
  2. Select “Actions > Management Actions > Teams > Create Teams auto attendant
Management Actions screen
  • You will be presented with a screen where you will need to fill in all the details.
Details screen
  • You can either play an audio file or type in a greeting message or choose no greetings.
Greeting message screen
  • On the next page you can select various options to route the call.
Route the call screen
  • Next, you can set up call flows after hours and call flows during holidays based on your requirements.
Call flow attendant screen
Call flow during holidays screen
  • You can set up the users or groups that will be listed and available in your organization’s directory when a caller dials into this auto attendant. When callers use dial by name and search for a person by their name using their voice or keypad, they will be then transferred to the user that has the Teams app installed.
Dial scope screen
  • You can finally review and submit to create the auto attendant.

Get a personalized demo today

Created by M365 experts, for M365 experts.