Tutorial / Cram Notes

Call park policies in Microsoft Teams are a set of rules that determine how call park features are applied within the organization. Call park allows users to place a call on hold and pick it up from another device, which is especially useful in large organizations and for individuals who need to switch devices frequently. Managing these policies is an essential aspect of the MS-700 Managing Microsoft Teams exam, as it relates to the day-to-day administration and customization of Microsoft Teams.

Understanding Call Park Policies

In Microsoft Teams, a call park policy grants users the ability to park a call. When a call is parked, it’s put on hold and can be retrieved by any user within the organization after entering a unique code. Call park policies can be configured at either the tenant level, which affects all users, or they can be custom-tailored for specific users or groups.

Creating Call Park Policies

To create call park policies, you must have administrative access to the Teams admin center or PowerShell cmdlets for Microsoft Teams. The following steps outline how to create a call park policy using the Teams admin center:

  1. Go to the Teams admin center.
  2. Navigate to Voice > Call park policies.
  3. Click on Add to create a new policy.
  4. Enter a name and description for the policy.
  5. Configure the settings for the policy, including timeout settings and whether call park is enabled.
  6. Save the policy.

Via PowerShell, you can use the New-CsTeamsCallParkPolicy cmdlet to create a new policy with specific attributes.

New-CsTeamsCallParkPolicy -Identity “CustomCallParkPolicy” -Description “Policy for sales department” -AllowCallPark $true

Managing Call Park Policies

After creating policies, you can assign them to users. You can do this individually or in batches.

Assigning Policies to Individual Users

In the Teams admin center:

  1. Navigate to Users, and select the user you wish to manage.
  2. Click on Policies.
  3. Under Assigned policies, select Edit next to Call park policy.
  4. Choose the policy from the dropdown menu, then click Apply.

Using PowerShell, assign a call park policy to a user with the Grant-CsTeamsCallParkPolicy cmdlet:

Grant-CsTeamsCallParkPolicy -Identity jane@domain.com -PolicyName “CustomCallParkPolicy”

Assigning Policies to Multiple Users or Groups

  1. In the Teams admin center, navigate to Voice > Call park policies.
  2. Select the policy you want to assign, then choose Manage users.
  3. In the manage users page, search for the users or groups, select them, and then click Save.

Or via PowerShell, to assign a policy to multiple users, you can use a script:

$users = “user1@domain.com”, “user2@domain.com”, “user3@domain.com”
foreach ($user in $users) {
Grant-CsTeamsCallParkPolicy -Identity $user -PolicyName “CustomCallParkPolicy”
}

Policy Options and Comparison

Feature Default Policy Custom Call Park Policy
Call Park Enabled Yes Yes
Timeout (seconds) 300 (5 minutes) Customizable
Retrieval Range Organization-wide Organization-wide
Music on Hold Yes Customizable

Monitoring and Troubleshooting

To ensure a call park policy is functioning correctly, you can:

  • Use the Call Quality Dashboard (CQD) to monitor call quality and performance.
  • Check Call Analytics for detailed information on individual calls.
  • Review Audit Logs to track changes made to call park policies.

Administrators should be familiar with these tools in order to quickly resolve any issues related to call park features and to optimize the calling experience in their organization.

In conclusion, creating and managing call park policies in Microsoft Teams is a process that involves understanding the needs of your organization, applying the appropriate configurations, and continuously monitoring policy effectiveness. The MS-700 Managing Microsoft Teams exam will require proficiency in these areas to ensure that candidates are qualified to administer and support various Teams calling features.

Practice Test with Explanation

T/F: Call park policies are applied on a per-user basis in Microsoft Teams.

  • True

Call park policies in Microsoft Teams are assigned to individual users, enabling or restricting them from using the call park feature.

T/F: It is possible to create custom call park policies in Microsoft Teams.

  • True

Administrators can create custom call park policies in the Teams admin center to cater to the specific needs of different users or groups.

T/F: Call park is a feature that allows a user to place a call on hold and pick it up from another device.

  • True

The call park feature allows users to place a call on hold and then pick it up from a different device by entering a retrieval code.

What is the maximum amount of time a call can be parked by default in Microsoft Teams?

  • A) 1 minute
  • B) 5 minutes
  • C) 15 minutes
  • D) 30 minutes

B) 5 minutes

By default, the maximum amount of time a call can remain parked in Microsoft Teams is 5 minutes.

Who can make changes to call park policies in Microsoft Teams?

  • A) Any team member
  • B) The user themselves
  • C) Global administrators or Teams service administrators
  • D) External consultants with access to the Teams admin center

C) Global administrators or Teams service administrators

Only global administrators or Teams service administrators have the permissions required to create or modify call park policies.

T/F: Once a call is parked, it can be retrieved from any Teams device using the provided retrieval code.

  • True

Parked calls can be retrieved on any Teams device by entering the unique code provided when the call was parked.

T/F: The Call Park feature is enabled for all users by default in Microsoft Teams.

  • False

The Call Park feature is not enabled for all users by default. An administrator must assign a call park policy to users to enable the feature for them.

Which PowerShell cmdlet is used to assign a call park policy to a user in Microsoft Teams?

  • A) Set-CsTeamsCallingPolicy
  • B) Set-CsUser
  • C) Grant-CsTeamsCallParkPolicy
  • D) New-CsTeamsCallParkPolicy

C) Grant-CsTeamsCallParkPolicy

The `Grant-CsTeamsCallParkPolicy` cmdlet is used to assign an existing call park policy to a user in Microsoft Teams.

T/F: Call park policies can be assigned both globally and to specific users or groups.

  • True

Call park policies can be set both as a global default and can also be assigned to specific users or groups based on the organization’s requirements.

Which of the following settings can be controlled using a call park policy?

  • A) The ability to park calls
  • B) Notification settings
  • C) Call forwarding
  • D) Music on hold options

A) The ability to park calls

Call park policies specifically control the ability for a user to park calls. Notification settings, call forwarding, and music on hold options are managed by other policies or settings.

How are changes to call park policies in Microsoft Teams applied?

  • A) Immediately
  • B) After a system reboot
  • C) Within a few hours
  • D) After the user signs out and back in

A) Immediately

Changes to call park policies are typically applied immediately, though propagation to all users could take some time depending on the service’s state.

T/F: Users need to be trained to use star (*) codes to retrieve parked calls in Microsoft Teams.

  • True

Users need to know how to use star (*) codes, also known as retrieval codes, to pick up parked calls. For example, entering *55 followed by the parked call number.

Interview Questions

What is call park in Microsoft Teams?

Call park is a feature in Microsoft Teams that allows users to put an ongoing call on hold and then retrieve it from another location.

How can I create a call park policy in Teams?

You can create a call park policy in the Teams admin center under Voice > Call park policies.

What options are available when creating a call park policy in Teams?

When creating a call park policy, you can specify a maximum time limit for parked calls, a range of extension numbers to use for call parking, and which users or groups are allowed to use the feature.

Can I apply a call park policy to specific users or groups in Teams?

Yes, you can assign a call park policy to specific users or groups in the Teams admin center under Users > [user/group name] > Policies.

How do I configure call park settings for a user in Teams?

You can configure call park settings for a user in the Teams admin center under Users > [user name] > Call settings > Call park.

Can I retrieve a parked call from any device in Teams?

Yes, you can retrieve a parked call from any Teams device or client, as long as the device or client is signed in with the same user account.

How do I retrieve a parked call in Teams?

To retrieve a parked call, dial the extension number that was used to park the call. The call will be connected to the device that dialed the extension.

Can I set up call park policies for a specific site or location in Teams?

Yes, you can create site-level call park policies in Teams by using PowerShell commands. Site-level policies can be applied to users in specific locations.

What happens if a parked call is not retrieved before the time limit set in the call park policy expires?

If a parked call is not retrieved before the time limit set in the call park policy expires, the call will be automatically transferred to a specified destination, such as voicemail or a call queue.

Can I change the destination for expired parked calls in Teams?

Yes, you can change the destination for expired parked calls in the Teams admin center under Voice > Call park policies > [policy name] > Expired parked call destination.

0 0 votes
Article Rating
Subscribe
Notify of
guest
60 Comments
Oldest
Newest Most Voted
Inline Feedbacks
View all comments
Léandre Durand
2 years ago

Great blog post! Really helped me understand how to create call park policies.

Sofia Thomas
1 year ago

Thanks for sharing this information.

Josep Moreno
1 year ago

Does anyone know if you can assign call park policies to specific users?

Konsta Salminen
1 year ago

How do call park policies affect existing call routing settings?

Jalil Der Kinderen
1 year ago

I failed my MS-700 exam. Got tripped up on managing call park policies.

Steffen Evju
1 year ago

Is it necessary to use PowerShell for managing these policies?

Marvin Fuller
1 year ago

We have a hybrid environment. Any specific tips for managing call park policies in such a setup?

Rose Garza
2 years ago

Awesome detailed guide, helps a lot!

60
0
Would love your thoughts, please comment.x
()
x