Posts

Showing posts from March, 2019

Define default email address domain for Office 365 Groups

Image
Microsoft Teams uses Office 365 Groups for Teams setup. this also impact the "send Email to" feature of Teams and Modern Groups. If your default tenant address is e.g. xyz.onmicrosoft.com and you wish to change it to your default Email domain, e.g. domain.com Create a new EmailAddressPolicy in Exchange Online: New-EmailAddressPolicy -Name Groups -IncludeUnifiedGroupRecipients -EnabledEmailAddressTemplates "SMTP:@domain.com" -Priority 1

Teams Guest User Access via ADD management

Image
Teams Guest User Access - Invite methods and process. Teams Guest User are member of a Office 365 modern group. There are two ways managing guest access.  - Teams Client  - Azure AAD You cannot managed, add guest users from within Office 365 groups, if the user isnt added as a guest user in Azure AD. Adding a Guest User from Teams Client The user self managed guest access is handled within Microsoft Teams client. The next illustrations will show you how. It is important, that Guest Access is enabled for your tenant (not show in this guide) Navigate to the Teams (…) and click manage team, from there you can add a guest user by typing his/her external Teams address in the format name@domain Upon the user is added, you will see this user as member in you Team. If you try managing a guest user / adding him/her via Office 365 Groups from you Admin Center, you will see that adding external user isn't possible. The user is shown as "Not Found"

Teams Call Queue Phonenumber for ourbound calling

If you want Teams Call Queues to operate an unique outbound call number, meaning call queue members should not expose the personal LineUri (Phone Number), you need to define a new Calling Line Identity. Therefore, you will first setup the Call Queue and than a  new Line Identity. This Identity you must grant as Policy explicit to the call queue identity. New-CsCallingLineIdentity `    -Identity "SupportCallQueue `    -CallingIdSubstitute "Support" ServiceNumber "+4989123456789" `    -EnableUserOverride False -Verbose Grant-CsCallingLineIdentity `    -Identity "support@uclabs.blog" `    -PolicyName "SupportCallQueue" Now, if an agent initiate an outbound call, the calling ID displayed for the with be the new call queue number instead of his personal LineURI.