关于如何将本地Skype for business/Lync用户迁移至MicrosoftTeams

Microsoft Teams工具最近已经达到全球协作沟通的Top 1了。业内人士都知道Teams是在Office365中取代Skype for business Online的产品,基于Office365的用户可以很顺畅的迁移到Teams中,那么本地部署Skype for business Server或Lync Server的客户如何升级到Teams中呢?

首先我们需要了解以下信息:

1、Teams只存在于Office365中,并无本地部署的镜像

2、Teams只在全球版Office365中提供服务,其余任何版本均没有Teams服务。

基于以上两点,本地部署SFB/Lync的客户想使用Teams,可以参考的是通过Hybrid路线:

1、购买全球版Office365订阅(可根据需求购买不同版本的订阅)

2、设置Office365(绑定域名等基础配置,Skype for business Online相关Lyncdiscover、SRV记录均需要指向本地部署)

3、Azure AD Connect部署,同步本地AD中所有User和Group

4、配置本地Skype/Lync Server与Skype for business Online之间的混合(当然本地Skype/Lync需要发布到公网)

##启用联盟:

Set-CSAccessEdgeConfiguration -AllowOutsideUsers 1 -AllowFederatedUsers 1 -EnablePartnerDiscovery 1 -UseDn***vRouting

扫描二维码关注公众号,回复: 4720990 查看本文章

##新建Office365联盟提供程序

New-CSHostingProvider -Identity SkypeforBusinessOnline -ProxyFqdn "sipfed.online.lync.com" -Enabled $true -EnabledSharedAddressSpace $true -HostsOCSUsers $true -VerificationLevel UseSourceVerification -IsLocal $false -AutodiscoverUrl https://webdir.online.lync.com/Autodiscover/AutodiscoverService.svc/root  

##配置SIP地址空间共享

Set-CsTenantFederationConfiguration -SharedSipAddressSpace $true

5、将用户迁移至Skype for business Online

可通过Powershell迁移也可以通过本地Skype/Lync Server控制面板进行迁移

Import-Module SkypeOnlineConnector

$cred = Get-Credential

$CSSession = New-CsOnlineSession -Credential $cred

Import-PSSession $CSSession -AllowClobber

Move-CsUser -Identity [email protected] -Target sipfed.online.lync.com -Credential $creds

1  

完成本地用户到Skype for business Online的迁移,接下来需要管理员考虑的问题就是:

Skype for business Online和Teams之间的关系:

1、Skype for business Online Only

2、Teams Only(目前Admin Portal还不提供)

3、Skype for business Online & Teams

具体的选择需要登录到Office365管理中心,选择Teams & Skype进行操作

image

然后选择组织范围的设置,选择Teams升级,目前只有两个选项第一是并行,第二是仅Skype for business,如果想进行过渡迁移选择并行然后点击保存即可

image

整个过程分享完毕

猜你喜欢

转载自blog.51cto.com/scnbwy/2337298