Posts

Showing posts from 2017

Microsoft Phone System Voicemail with Teams

Image
Recently Microsoft started changing their Office 365 environment utilizing more Azure based service. One of the first services moved into an Azure model was the Exchange Voicemail service. It now resides in Azure. This service as a product is now named Microsoft Phone System Voicemail . The works with Skype for Business and Teams in the following setups with either PSTN Calling (Microsoft cloud based PSTN) or PSTN Hybrid Voice (PSTN On-Premise) Calling Plan Hybrid Voice (PSTN On-Prem) Skype for Business YES YES Teams YES NO Next, we need to consider the correlation with Exchange UM and Phone System Voice Mail. Voicemail Option with Skype for Business and Teams Exchange UM Phone System Voicemail Exch UM On-Premise Exch UM online User Mbx homed Exch On-Premise User Mbx homed Exch Online SfB On-Premis YES YES NO NO Sf

Active Directory Object missing (AAD) with Teams/ Skype for Business online

Image
This reported issue "Active Directory Object missing" is most likely happen if your run an Office 365 Tenant smaller than RING 4. Mainly TAP Tenant.  Else if you experience those issues within your Customer Tenant, simply follow the same procedure. It can be with any objects, which have a correlated AAD object. (AAD = Azure Active Directory) The problem occurs, if there are any inconsistence between the AAD and CMS objects. Saving the configuration from CMS into the AAD object is what’s happening in the background and will therefore solve the issue. First login to you Office 365 Tenant and navigate to Skype for Business Admin Center (later Communication) and locate the object having this issue...  Next open the object and press "Edit" Once the object configuration opens, don't change anything and click "Save" Now the object configuration will be saved to AAD  If a message like this "Active Directory object for l

Change Authentication Code Phone Number if Teams ask for verification

Image
IMPORTANT ADVICE: If you setup your MFA, make sure you provide a 2nd phone number for recovery! If you are switching to one of your guest tenants or in some other cases, Teams ask for a Microsoft Secure Code, sending those digit to your registered phone number. This feature for securing your account is part of the your Azure AD user settings, which requires you committing changes there. You have 4 options, you can chose from receiving the Microsoft Authenticator Token: - Authentication Phone - Office Phone - Alternate authentication phone - Authenticator app Either one or multiple Authenticators you might have set and need to change them according to your need. Sign in to https://myapps.microsoft.com Select your account name in the top right, then select profile . Select Additional security verification . IMPORTANT SECURITY ADVICE: It is important to configure a secondary authentication phone number. Because your primary phone number and your m

Focused Mailbox not shown - solution

Image
You might have experienced two issues related with not having the FOCUSED MAILBOX shown on your Outlook client. - Either its not shown on all client - or its shown one one client but on another not First you need to have activated Outlook with an account related to a dedicated Office 365 tenant where focused mailbox is enabled on a Organization Level. Even if one client shows up focused mailbox and another not, simply changing the accounts to the same subscription account will not activate the focused mailbox. It all comes back to the same solution: To check whether your focused inbox is turned on, please run powershell commands referring to the steps below and send us a screenshot. Please be informed that you need to involve your admin to perform this. 1.  Connect to Exchange Online PowerShell . 2.  Run the following commands: Get-FocusedInbox –Identity “user@domain.com email address” Get-OrganizationConfig | fl *focus* You must activate it on your Exchang

Office 365 Group Calendar in Teams

Image
I stepped over an interesting possibility, making TEAMS more to your prefered Modern Workplace Team Tool. You are able to add your Teams Calendar (from Office 365 Groups) into a Apps Tab. This enables you to seeing your related appointment faster. Disadvantage is, you can navigate through Outlook Web App as usual. This is generally not an issue an further more, it allows you also writing emails from within TEAMS! Not, you only see in OWA the content from the user you logged in with. Ok, lets start: Got to Outlook Web App go to your Group Calendar related to your TEAM. Copy the entire URL... Open TEAMS and click "add" new App Chose "Website" Name the Tab "Calendar" Paste the URL Click Save You are ready and will see the Teams Calendar now within teams Hope you find this helpful and experiment with more possible Tabs/ Apps in Teams.

Teams sharing files with external non-teams members

Image
Sharing files with external guest is a native SharePoint feature. Teams relays on Office 365 Groups. Any O365 Group can be used and is required for activating a MS Teams. Therefore the basic settings once a Teams was created, which automatically creates an Office 365 has external non-teams-guest sharing disabled by default. The structure for external file sharing is: 1. Organizational Setting (Tenant Level) Admin centers > SharePoint/sharing 2. SharePoint Site Collection Admin centers > SharePoint/site collections/sharing 3. Office 365 Groups setting We need now managing external sharing for Office 365 Group site collections. We can share files from within Teams either as Teams link or native SharePoint link. As per default setting, the Teams Groups 365 Group site collection will NOT allow sharing with external, non-member guest users. This you will see even if the global tenant level has activated the external access to file an

Teams PowerShell download

Image
Microsoft Teams PowerShell 0.9.0 Teams Cmdlets module Inspect PS> Save-Module -Name MicrosoftTeams -Path <path>    Install: Open a Windows PowerShell console. Run the Install-Module cmdlet as shown here. PS> Install-Module -Name MicrosoftTeams -RequiredVersion <version> MS Teams cmdlets: Add-TeamUser Get-Team Get-TeamChannel Get-TeamFunSettings Get-TeamGuestSettings Get-TeamMemberSettings Get-TeamMessagingSettings Get-TeamHelp Get-TeamUser New-TeamChannel New-Team Remove-Team Remove-TeamChannel Remove-TeamUser Set-TeamFunSettings Set-TeamGuestSettings Set-TeamMemberSettings Set-TeamMessagingSettings Set-Team Set-TeamChannel Set-TeamPicture Connect-MicrosoftTeams   Sample: Connect-MicrosoftTeams -AccountId you@domain.com $group = New-Team -alias "ProductA" -displayname "Product A Planning" -AccessType "private" Add-TeamUser -GroupId $group.GroupId -User " user01@domain.com &

Hide users from address book in Skype for Business

SfB On-Premise is making use of the Exchange GAL. If you don't want users or other resources to appear in address book / GAL search in the Skype for Business client there is an easy way. Hiding contacts from GAL, by changing an AD related attribute. This could be e.g. hiding Helpdesk Team Members This is the Exchange attribute for hiding users from the Global Address List (GAL). If this is set to TRUE, which indicates it doesn’t need to appear on the GAL, Lync will also ignore this user for the Address Book. This sets the attribute "msExchHideFromAddressLists" to True. It also clears the attribute "ShowinAddressBook"  This is the Script: $users = Get-CsAdUser -Filter {name -Like "*HelpDesk*"} foreach ($object in $users)     {       Set-ADObject -Add @{msExchHideFromAddressLists=$true} -Identity $object.DistinguishedName       Set-ADObject –clear ShowinAddressBook -Identity $object.DistinguishedName   } In this example i hid