Skip to content

Commit

Permalink
Deployed 05a447d with MkDocs version: 1.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Unknown committed Sep 9, 2024
1 parent 6790bc6 commit 46d4df0
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 8 deletions.
22 changes: 15 additions & 7 deletions M365/MDO/MDOThreatPolicyChecker/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3487,14 +3487,22 @@ <h1 id="mdothreatpolicychecker">MDOThreatPolicyChecker</h1>
</ul>
<p>The script runs only in Read mode from Exchange Online and Microsoft Graph PowerShell. It does not modify any policies, and only provides actionable guidance for administrators for remediation.</p>
<h2 id="prerequisites">Prerequisites</h2>
<p>The script uses Exchange Online cmdlets from Exchange Online module and Microsoft.Graph cmdLets from Microsoft.Graph.Authentication, Microsoft.Graph.Groups and Microsoft.Graph.Users modules.</p>
<p>To run the PowerShell Graph cmdlets used in this script, you need only the following modules from the Microsoft.Graph PowerShell SDK:
- Microsoft.Graph.Groups: Contains cmdlets for managing groups, including <code>Get-MgGroup</code> and <code>Get-MgGroupMember</code>.
- Microsoft.Graph.Users: Includes cmdlets for managing users, such as <code>Get-MgUser</code>.
- Microsoft.Graph.Authentication: Required for authentication purposes and to run any cmdlet that interacts with Microsoft Graph.</p>
<p>The script uses Powershell cmdlets from the Exchange Online module and from the Microsoft.Graph.Authentication, Microsoft.Graph.Groups, and Microsoft.Graph.Users modules.</p>
<p>To run the Graph cmdlets used in this script, you only need the following modules from the Microsoft.Graph PowerShell SDK:</p>
<ul>
<li>
<p>Microsoft.Graph.Groups: for managing groups, including <code>Get-MgGroup</code> and <code>Get-MgGroupMember</code>.</p>
</li>
<li>
<p>Microsoft.Graph.Users: for managing users, such as <code>Get-MgUser</code>.</p>
</li>
<li>
<p>Microsoft.Graph.Authentication: for authentication purposes and to run any cmdlet that interacts with Microsoft Graph.</p>
</li>
</ul>
<p>You can find the Microsoft Graph modules in the following link:<br>
&nbsp;&nbsp;&nbsp;&nbsp;https://www.powershellgallery.com/packages/Microsoft.Graph/<br>
&nbsp;&nbsp;&nbsp;&nbsp;https://learn.microsoft.com/en-us/powershell/microsoftgraph/installation?view=graph-powershell-1.0#installation</p>
&nbsp;&nbsp;&nbsp;&nbsp;https://www.powershellgallery.com/packages/Microsoft.Graph/<br></p>
<p>&nbsp;&nbsp;&nbsp;&nbsp;https://learn.microsoft.com/en-us/powershell/microsoftgraph/installation?view=graph-powershell-1.0#installation</p>
<p>Here's how you can install the required submodules for the PowerShell Graph SDK cmdlets:</p>
<div class="highlight"><pre><span></span><code><span class="nb">Install-Module</span> <span class="n">-Name</span> <span class="n">Microsoft</span><span class="p">.</span><span class="n">Graph</span><span class="p">.</span><span class="n">Authentication</span> <span class="n">-Scope</span> <span class="n">CurrentUser</span>
<span class="nb">Install-Module</span> <span class="n">-Name</span> <span class="n">Microsoft</span><span class="p">.</span><span class="n">Graph</span><span class="p">.</span><span class="n">Groups</span> <span class="n">-Scope</span> <span class="n">CurrentUser</span>
Expand Down
2 changes: 1 addition & 1 deletion search/search_index.json

Large diffs are not rendered by default.

0 comments on commit 46d4df0

Please sign in to comment.