This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Registry key,Type,Value | |
HKEY_CURRENT_USER\Software\Microsoft\Exchange\AlwaysUseMSOAuthForAutoDiscover,REG_DWORD,1 | |
HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Common\Identity\EnableADAL,REG_DWORD,1 | |
HKEY_CURRENT_USER\Software\Microsoft\Office\15.0\Common\Identity\Version,REG_DWORD,1 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<# | |
.Synopsis | |
Gather groups membership by user in all O365 Tenant. | |
Medium Article: https://j0rt3g4.medium.com/report-with-all-the-group-membership-by-the-user-in-office-365-ca48a2398072 | |
.DESCRIPTION | |
Gather the membership by user in all O365 Groups | |
.EXAMPLE | |
.\Get-GroupsMemberByUser.ps1 | |
Get the membership saved into Variable $Report and show it on screen | |
.EXAMPLE |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function Convert-XmlElementToString | |
{ | |
[CmdletBinding()] | |
param( | |
[Parameter(Mandatory=$true)] | |
$xml | |
) | |
$sw = [System.IO.StringWriter]::new() | |
$xmlSettings = [System.Xml.XmlWriterSettings]::new() |