Skip to content

Commit

Permalink
Split out the install of the modules from running the modules.
Browse files Browse the repository at this point in the history
  • Loading branch information
merill committed Apr 1, 2024
1 parent 47b530b commit 71b5567
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions website/docs/intro.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,20 +10,21 @@ title: Introduction
Maester is a PowerShell based test automation framework to help you monitor your Microsoft 365 security configuration.


- Install the **Maester** PowerShell module.
- Connect
- Install the **Maester** PowerShell module and the required Pester module.

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

- Install the out-of-the-box Maester tests and run them.

```powershell
md maester-tests
cd maester-tests
Install-Module Pester -SkipPublisherCheck -Force
Install-Module Maester -Scope CurrentUser
Install-MaesterTests .\tests
Connect-Maester
Invoke-Maester
```

Expand Down

0 comments on commit 71b5567

Please sign in to comment.