Forum Discussion
Robert K
Sep 30, 2020Brass Contributor
Unable to switch to Teams-only mode
I tried to switch from Island mode to Teams-only mode. But the admin center is not accepting the setting. Why? The screenshot shows one of my demo tenants. But I have the exact same iss...
- Sep 30, 2020Hi Robert K
Could be an issue with the TAC. Try with Powershell
https://blog.bardalen.no/index.php/2020/05/25/how-to-upgrade-users-coexistence-mode-to-teams-only-using-powershell/
Let me know how you get on. Hope this answers your question
Best, Chris
Sep 30, 2020
Hi Robert K
Could be an issue with the TAC. Try with Powershell
https://blog.bardalen.no/index.php/2020/05/25/how-to-upgrade-users-coexistence-mode-to-teams-only-using-powershell/
Let me know how you get on. Hope this answers your question
Best, Chris
Could be an issue with the TAC. Try with Powershell
https://blog.bardalen.no/index.php/2020/05/25/how-to-upgrade-users-coexistence-mode-to-teams-only-using-powershell/
Let me know how you get on. Hope this answers your question
Best, Chris
Robert K
Sep 30, 2020Brass Contributor
Thank you. This helped a lot.
I tried
Grant-CsTeamsUpgradePolicy -PolicyName UpgradeToTeams -Global
and got
This organization cannot be upgraded to TeamsOnly at the tenant level because there is an on-premise deployment of Skype for Business detected in 1 or more of it sip domains, xxxx.yyy. Users can be individually upgraded to TeamsOnly using either Move-CsUser (if the user has an on-premises Skype for Business account) or Grant-CsTeamsUpgradePolicy (if the user is homed in Skype for Business online).
Then I tried
$userlist = Get-CSOnlineUser
foreach($User in $userlist)
{
Grant-CsTeamsUpgradePolicy -PolicyName UpgradeToTeams -Identity $User.SipAddress
}
And this worked for me. Case closed. 😉