Book Image

Microsoft 365 Mobility and Security – Exam Guide MS-101

By : Nate Chamberlain
Book Image

Microsoft 365 Mobility and Security – Exam Guide MS-101

By: Nate Chamberlain

Overview of this book

Exam MS-101: Microsoft 365 Mobility and Security is a part of the Microsoft 365 Certified: Enterprise Administrator Expert certification path designed to help users validate their skills in evaluating, planning, migrating, deploying, and managing Microsoft 365 services. This book will help you implement modern device services, apply Microsoft 365 security and threat management, and manage Microsoft 365 governance and compliance. Written in a succinct way, you’ll explore chapter-wise self-assessment questions, exam tips, and mock exams with answers. You’ll start by implementing mobile device management (MDM) and handling device compliance. You’ll delve into threat detection and management, learning how to manage security reports and configure Microsoft 365 alerts. Later, you’ll discover data loss prevention (DLP) tools to protect data as well as tools for configuring audit logs and policies. The book will also guide you through using Azure Information Protection (AIP) for deploying clients, applying policies, and configuring services and users to enhance data security. Finally, you’ll cover best practices for configuring settings across your tenant to ensure compliance and security. By the end of this book, you’ll have learned to work with Microsoft 365 services and covered the concepts and techniques you need to know to pass the MS-101 exam.
Table of Contents (22 chapters)
Free Chapter
1
Section 1: Modern Device Services
6
Section 2: Microsoft 365 Security Threat Management
11
Section 3: Microsoft 365 Governance Compliance
17
Section 4: Mock Exams
18
Mock Exam 1
19
Mock Exam 2

Configuring a super user

Super users can read and inspect data that's protected by Azure RMS in case of an emergency or the need for recovery. However, the super users feature is not enabled by default. You can enable it and assign super users by utilizing PowerShell:

  1. Enable the super user feature:
Enable-AadrmSuperUserFeature
  1. Assign a super user (this could be an individual or a service account):
Add-AadrmSuperUser -EmailAddress "[email protected]" 

Alternatively, you can use the following command:

Add-AadrmSuperUser -ServicePrincipalId "1A234567-89B0-1234-5678-9C012345D67"

Alternatively, set a group as super users:

Set-AadrmSuperUserGroup -GroupEmailAddress "[email protected]"
  1. You can have the feature enabled when it's needed and then use the following cmdlet to disable it when it's not needed:
 Disable-AadrmSuperUserFeature...