Book Image

Managing Microsoft Teams: MS-700 Exam Guide

By : Peter Rising, Nate Chamberlain
Book Image

Managing Microsoft Teams: MS-700 Exam Guide

By: Peter Rising, Nate Chamberlain

Overview of this book

Do you want to build and test your proficiency in the deployment, management, and monitoring of Microsoft Teams features within the Microsoft 365 platform? Managing Microsoft Teams: MS-700 Exam Guide will help you to effectively plan and implement Microsoft Teams using the Microsoft 365 Teams admin center and Windows PowerShell. You’ll also discover best practices for rolling out and managing MS services for Teams users within your Microsoft 365 tenant. The chapters are divided into three easy-to-follow parts: planning and design, feature policies and administration, and team management, while aligning with the official MS-700 exam objectives to help you prepare effectively for the exam. The book starts by taking you through planning and design, where you’ll learn how to plan migrations, make assessments for network readiness, and plan and implement governance tasks such as configuring guest access and monitoring usage. Later, you’ll understand feature administration, focusing on collaboration, meetings, live events, phone numbers, and the phone system, along with applicable policy configurations. Finally, the book shows you how to manage Teams and membership settings and create app policies. By the end of this book, you'll have learned everything you need to pass the MS-700 certification exam and have a handy reference guide for MS Teams.
Table of Contents (23 chapters)
1
Section 1: Planning and Designing Your Microsoft Teams Deployment
9
Section 2: Administering the Meeting, Calling, and Chat Features within Microsoft Teams
14
Section 3: Planning, Deploying, and Managing Policies for Microsoft Teams, and Apps within Teams
18
Section 4: Mock Exams and Assessments
20
Chapter 16: Mock Exam Answers

Configuring the Meeting Migration Service to migrate Skype for Business meetings to Teams

While completing your organizations upgrade to Microsoft Teams, you will need to understand the Meeting Migration Service (MMS) in certain situations. The MMS will be automatically triggered to update the meetings of your organization's users under the following circumstances:

  • Users are migrated from Skype for Business on-premises to Skype for Business Online or Microsoft Teams (in Teams only mode).
  • A user's audio-conferencing settings are modified.
  • A user's coexistence mode is upgraded to Teams only.
  • A user's coexistence mode is set to Skype for Business with Teams collaboration and meetings.
  • Using the PowerShell command, Start-CsExMeetingMigration.

The automatic triggering of the MMS in any of the preceding conditions can be disabled by Teams administrators if required. In addition, it is also possible for the MMS to be triggered manually by Teams administrators by using PowerShell.

Important note

It is not possible to use the MMS if the user's mailbox resides on an Exchange on-premises environment, or if offboarding the user from the cloud back to on-premises.

So how does this work? Essentially, the MMS utilizes a queue system. When a user is set for migration, a search is performed against their mailbox for existing meeting events, and these are then converted to Skype for Business Online meetings, or Teams Meetings depending upon the upgrade and coexistence options, which are targeted to that user. The meeting block details are then all replaced, and the meeting invite is then updated for all invitees with the updated meeting details.

As an example, when a user is using Skype for Business on-premises, the meeting details within the invitation will appear as shown in the following screenshot:

Figure 1.10 – Skype meeting invite

Figure 1.10 – Skype meeting invite

However, once the user's migration has been migrated to Teams, the MMS will update the meeting invites in the user's calendar as follows:

Figure 1.11 – Teams meeting invite

Figure 1.11 – Teams meeting invite

Important note

If a user has edited the meeting invitation and added customized text, this will not be migrated. The updated meeting details will be the default content. In addition, content such as whiteboards and polls are not migrated with the MMS, and any such items will need to be manually recreated. Meetings with over 250 attendees may also not be migrated.

Of the five aforementioned criteria for when the MMS will be triggered, the first four will occur in a very automated fashion in most cases, so we will not focus on the processes that take place when these occur. If you would like to learn more about these, you may refer to the following Microsoft documentation:

https://docs.microsoft.com/en-us/skypeforbusiness/audio-conferencing-in-office-365/setting-up-the-meeting-migration-service-mms#updating-meetings-when-you-move-an-on-premises-user-to-the-cloud

We will, however, spend some time looking at how meetings are migrated to Teams by using PowerShell commands.

Manually migrating meetings to Teams using PowerShell

By using PowerShell, Teams administrators may manually trigger meeting migrations for users with the Start-CsExMeetingMigration command.

An example of how this command could be applied to an individual user within your organization is shown here:

Start-CsExMeetingMigration -Identity [email protected] -TargetMeetingType Teams

This command will create a migration request for the targeted user that will result in all the user's meetings being migrated to Teams.

While the migration is in progress, you may check on the status of the migration by running the following PowerShell command:

Get-CsMeetingMigrationStatus -Identity [email protected]

Should you encounter any issues with migrating the meetings using PowerShell, individual users can use the per-user Meeting Migration Tool instead of migrating their own meetings. Details on how to use the Meeting Migration Tool can be found at the following link: https://support.microsoft.com/en-gb/office/meeting-update-tool-for-skype-for-business-and-lync-2b525fe6-ed0f-4331-b533-c31546fcf4d4?ui=en-us&rs=en-gb&ad=gb.

Should the Meeting Migration Tool also fail for any reason, users may need to manually create new meetings, or contact Microsoft for support.

In this section, we have explained the principles of the MMS and how it is used to update the meetings of your organization's users during your migration to Teams. You learned that the MMS will be automatically triggered in several situations, and that you can manually migrate your users' meetings using PowerShell and the Start-CsExMeetingMigration command.

Next, we will look at the options available to set Teams upgrade notifications and default apps while in coexistence mode.