Member-only story

Maester - Secure your M365 Tenant

Octavian Mihail Romanescu
2 min readSep 23, 2024

--

In the last article, we discussed how to secure our Active Directory. Now, it’s time to talk about how we can secure our Microsoft 365 tenant in the cloud.

We are going to talk about Maester. Maester is a Microsoft Security test automation framework which comes with a collection of ready to use tests to help you get started with validating your tenant’s security configuration.

You can configure these tests to run periodically to gain insight into the evolution of your tenant’s security.

So, before using it, we need to install it by running the following commands:

Install-Module Pester -SkipPublisherCheck -Force -Scope CurrentUser
Install-Module Maester -Scope CurrentUser

md maester-tests
cd maester-tests
Install-MaesterTests

After that we have to sign to M365 tenant and run the tests.

Connect-Maester
Invoke-Maester

--

--

No responses yet