You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+14-87Lines changed: 14 additions & 87 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,39 +53,31 @@ Monkey365 is designed to simplify Microsoft cloud security assessments without r
53
53
54
54
---
55
55
56
-
# Quick Start
56
+
# Get Started
57
57
58
-
Install Monkey365 from the PowerShell Gallery:
58
+
Install the Monkey365 PowerShell module and run.
59
59
60
-
```powershell
61
-
Install-Module -Name monkey365 -Scope CurrentUser
62
-
```
63
-
64
-
Import the module:
60
+
[Zero configuration](https://silverhack.github.io/monkey365/install/install-instructions/) and no external Microsoft modules are required.
65
61
66
62
```powershell
63
+
Install-Module -Name monkey365 -Scope CurrentUser
67
64
Import-Module monkey365
68
-
```
69
-
70
-
Run a basic assessment:
65
+
Invoke-Monkey365
71
66
72
-
```powershell
73
67
$options = @{
74
-
Instance = 'Microsoft365';
75
-
Collect = 'SharePointOnline';
76
-
PromptBehavior = 'SelectAccount';
77
-
IncludeEntraID = $true;
78
-
ExportTo = 'HTML';
68
+
Instance = 'Microsoft365'
69
+
Collect = 'ExchangeOnline'
70
+
PromptBehavior = 'SelectAccount'
71
+
IncludeEntraID = $true
72
+
ExportTo = 'HTML'
79
73
}
80
-
$assets = Invoke-Monkey365 @options
81
-
```
82
-
83
-
Get available options and examples:
84
74
85
-
```powershell
86
-
Get-Help Invoke-Monkey365 -Detailed
75
+
Invoke-Monkey365 @options
87
76
```
88
77
78
+
> [!NOTE]
79
+
> Monkey365 is distributed as a self-contained PowerShell module and includes all required dependencies. No additional Microsoft PowerShell modules are required.
80
+
89
81
---
90
82
91
83
# Introduction
@@ -96,71 +88,6 @@ The tool provides recommendations to help organizations strengthen their cloud s
> Monkey365 is distributed as a self-contained PowerShell module and includes all required dependencies. No additional Microsoft PowerShell modules are required.
129
-
130
-
## GitHub Releases
131
-
132
-
Download the latest release from the following page:
133
-
134
-
https://github.com/silverhack/monkey365/releases
135
-
136
-
After downloading the release package, extract the archive to a suitable directory.
137
-
138
-
Use the PowerShell `Unblock-File` cmdlet to unblock extracted files if required:
0 commit comments