January 2020
Beginner
632 pages
13h 14m
English
Since modern sites are connected to Office 365 groups, modern site group membership is managed through the Add-UnifiedGroupLinks cmdlet and takes a bit more effort. If you need to do it (for example, performing the activity in bulk), you may want to administer it via PowerShell with this process:
$Session = New-PSSession -ConfigurationName Microsoft.Exchange -ConnectionUri https://outlook.office365.com/powershell-liveid/ -Credential (Get-Credential) -Authentication Basic -AllowRedirection;Import-PSSession $Session
$Group = Get-UnifiedGroup -ResultSize Unlimited | ? { $_.SharePointSiteUrl -eq "https://<tenant>.sharepoint.com/sites/<site>"} ...Read now
Unlock full access