# Prerequisites | |
# AllowBasic as Admin, perhaps in a separate window | |
# Set-ItemProperty -path 'HKLM:\\SOFTWARE\\Policies\\Microsoft\\Windows\\WinRM\\Client' -Name AllowBasic -Value 1 | |
# Connect to Exchange Online | |
Import-Module ExchangeOnlineManagement | |
Connect-ExchangeOnline | |
# you can get $groupId from the SPO object | |
$exogroup = Get-UnifiedGroup -Identity $groupId | |
$isYammer = $exogroup.GroupSKU -eq "Yammer" | |
#Bonus: determine if Team is connected (if $isYammer is $false) | |
$hasTeam = "Team" -in $exogroup.ResourceProvisioningOptions |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment