Forum Discussion
Deleted
May 02, 2017Blocked from creating a Group in Outlook
Drew Madelung thank you for this https://drewmadelung.com/managing-office-365-group-using-azure-ad-powershell-v2/! It has been a huge help. I have run into an issue with creating Groups in Outlook. E...
- May 02, 2017
Thanks! So with that template configured you are saying that you can create Groups in other apps but not Outlook?
Prior to AzureAD cmdlets Group creation control was only available through an OWA mailbox policy which would only work within Outlook. You can check on this with this info:
$creds = Get-Credential $Session = New-PSSession -ConfigurationName Microsoft.Exchange –ConnectionUri ` https://outlook.office365.com/powershell-liveid/ -Credential $creds -Authentication Basic -AllowRedirection Import-PSSession $Session Get-OwaMailboxPolicy | select Name,GroupCreationEnabled
Here is what it will look like if Group creation is enabled:
May 02, 2017
Thanks! So with that template configured you are saying that you can create Groups in other apps but not Outlook?
Prior to AzureAD cmdlets Group creation control was only available through an OWA mailbox policy which would only work within Outlook. You can check on this with this info:
$creds = Get-Credential $Session = New-PSSession -ConfigurationName Microsoft.Exchange –ConnectionUri ` https://outlook.office365.com/powershell-liveid/ -Credential $creds -Authentication Basic -AllowRedirection Import-PSSession $Session Get-OwaMailboxPolicy | select Name,GroupCreationEnabled
Here is what it will look like if Group creation is enabled:
- DeletedMay 02, 2017That was it! Thank you.