Book Image

Deploying Microsoft 365 Teamwork: Exam MS-300 Guide

By : Aaron Guilmette
Book Image

Deploying Microsoft 365 Teamwork: Exam MS-300 Guide

By: Aaron Guilmette

Overview of this book

The Microsoft MS-300 exam is designed to test the knowledge and skills of administrators in deploying, configuring, and managing SharePoint Online, SharePoint Server, SharePoint Hybrid, OneDrive for Business, and Teams. This book offers up-to-date coverage of the important topics based on the MS-300 exam and features question answers and insider tips to help you prepare for certification. Written in a clear, succinct way, the book starts by helping you configure and manage SharePoint Online. You’ll then delve into OneDrive for Business, right from managing users and groups, through to monitoring sharing and security. Further chapters will guide you through working with Teams, with an emphasis on managing identity authentication, resolving issues with the service, and even observing usage patterns. Later, you’ll get up to speed with workload integrations, covering the Yammer business communications platform, before moving on to understand how to integrate Microsoft Stream with SharePoint, Teams, and Yammer. Finally, you’ll learn to develop data governance and user adoption strategies. By the end of this book, you'll be well-versed with SharePoint Online and have learned the essential techniques and concepts you need to know in order to pass the MS-300 certification exam.
Table of Contents (24 chapters)
22
Assessment Answers

Planning and configuring Teams templates

Microsoft provides several Microsoft Teams templates for different kinds of organizations. Currently, these templates are only accessed by using the Microsoft Graph API for creating teams, located at https://graph.microsoft.com/beta/teamsTemplates('<templateName>. When creating a team using a template, you provide the JSON representation of the team and any associated settings in a programmatic fashion and submit it via an HTTP POST call.

For example, the following template can be used to create a team using the standard template with channels named Announcements and Training:

POST https://graph.microsoft.com/beta/teams
Content-Type: application/json
{
"[email protected]": "https://graph.microsoft.com/beta/teamsTemplates('standard')",
"visibility": "Private",
"displayName...