xiyou 发表于 2019-2-3 14:22:55

配置Sharepoint 2013站点邮箱

  站点邮箱是Sharepoint 2013的新功能,不知道大家是否知晓,可以在一个网站集下的项目网站上开启站点邮箱,这样根据项目的邮件都会在这里进行汇总,方便相关的管理和查阅,无论是项目老成员还是新成员都可以看到项目的前后始末~那怎么配置呢?
  可以根据项目在sharepoint 2013中利用Exchange 2013配置站点邮箱
  首先需要创建443的WEB应用程序以及443下的网站集。
  为什么呢?因为需要证书来完成信任
  Sharepoint 2013的系统最好为windows Server 2012
http://rdsrv.blog.运维网.com/attachment/201307/18/2996778_1374135558GQtK.png
  创建一个User Profile Service应用
http://rdsrv.blog.运维网.com/attachment/201307/18/2996778_1374135562S521.png
http://rdsrv.blog.运维网.com/attachment/201307/18/2996778_1374135571Ccrt.png
http://rdsrv.blog.运维网.com/attachment/201307/18/2996778_1374135584pmaL.png
http://rdsrv.blog.运维网.com/attachment/201307/18/2996778_1374135596bmke.png
  接着用Powershell开启NetBIOS
  $ServiceApps = Get-SPServiceApplication
  $UserProfileServiceApp = ""
  foreach ($sa in $ServiceApps)
  {if ($sa.DisplayName -eq &quot;< UPSAname >&quot;)
  {$UserProfileServiceApp = $sa}
  }
  $UserProfileServiceApp.NetBIOSDomainNamesEnabled = 1
  $UserProfileServiceApp.Update()
  其中< UPSAname >替换成上面的:
http://rdsrv.blog.运维网.com/attachment/201307/18/2996778_1374135599mVlZ.png
  名称,保存成EnableNetBIOS.ps1
  接着运行:
http://rdsrv.blog.运维网.com/attachment/201307/18/2996778_1374135601QXOO.png
http://rdsrv.blog.运维网.com/attachment/201307/18/2996778_13741356062cHn.png
http://rdsrv.blog.运维网.com/attachment/201307/18/2996778_1374135606wJQT.png
  启动用户配置文件服务
http://rdsrv.blog.运维网.com/attachment/201307/18/2996778_1374135610qWIn.png
http://rdsrv.blog.运维网.com/attachment/201307/18/2996778_1374135616OneJ.png
  重置IIS
  Iisreset
  用户配置文件同步
  创建一个同步连接:
http://rdsrv.blog.运维网.com/attachment/201307/18/2996778_1374135620ydyO.png
http://rdsrv.blog.运维网.com/attachment/201307/18/2996778_1374135624RmF9.png
http://rdsrv.blog.运维网.com/attachment/201307/18/2996778_1374135636ZjCo.png
http://rdsrv.blog.运维网.com/attachment/201307/18/2996778_1374135640Rvc5.png
http://rdsrv.blog.运维网.com/attachment/201307/18/2996778_1374135646YDKG.png
http://rdsrv.blog.运维网.com/attachment/201307/18/2996778_1374135650urWE.png
http://rdsrv.blog.运维网.com/attachment/201307/18/2996778_1374135655ozaG.png
  开始同步
http://rdsrv.blog.运维网.com/attachment/201307/18/2996778_13741356627cxa.png
http://rdsrv.blog.运维网.com/attachment/201307/18/2996778_1374135672FNss.png
http://rdsrv.blog.运维网.com/attachment/201307/18/2996778_1374135677LZB1.png
http://rdsrv.blog.运维网.com/attachment/201307/18/2996778_1374135679PDGs.png
  刷新页面
http://rdsrv.blog.运维网.com/attachment/201307/18/2996778_1374135686OEVL.png
  应用程序管理服务应用
http://rdsrv.blog.运维网.com/attachment/201307/18/2996778_13741356899g7U.png
http://rdsrv.blog.运维网.com/attachment/201307/18/2996778_1374135692LVOf.png
http://rdsrv.blog.运维网.com/attachment/201307/18/2996778_1374135695Qqfx.png
http://rdsrv.blog.运维网.com/attachment/201307/18/2996778_1374135699nDGF.png
http://rdsrv.blog.运维网.com/attachment/201307/18/2996778_1374135703Q8NV.png
  启动程序管理服务应用
http://rdsrv.blog.运维网.com/attachment/201307/18/2996778_13741357066wSv.png
http://rdsrv.blog.运维网.com/attachment/201307/18/2996778_1374135712wF6o.png
  创建一个WEB应用程序为443的再根据443创建网站集
  并申请导入好证书分配给443站点
  从http://www.microsoft.com/en-us/download/details.aspx?id=35371下载Microsoft Exchange Web Services Managed API 2.0,然后保存在WFE(sharepoint前端)服务器上的一个文件夹中。
  以管理员方式打开命令窗口,导航到保存EWSManagedAPI.msi 的文件夹。
  运行如下命令:
  msiexec /i EwsManagedApi.msi addlocal=&quot;ExchangeWebServicesApi_Feature,ExchangeWebServicesApi_Gac&quot;
http://rdsrv.blog.运维网.com/attachment/201307/18/2996778_1374135716T1Up.png
  安装完重启IIS:
  IISReset
  在 SharePoint Server 2013 上建立 OAuth 信任和服务权限
  下面的脚本请查阅http://technet.microsoft.com/en-us/library/jj552524(office.15).aspx
  复制以下两个脚本。应将第一个脚本另存为 Set-SiteMailboxConfig.ps1,将第二个另存为 Check-SiteMailboxConfig.ps1
  将这两个 .ps1 文件保存到 SharePoint 2013 WFE 服务器上的同一文件夹中,因为在执行期间一个脚本将调用另一个脚本。
  我先检查下:
http://rdsrv.blog.运维网.com/attachment/201307/18/2996778_1374135719rdxT.png
  在 SharePoint PowerShell 窗口(右键单击并选择“以管理员身份运行”可打开该窗口)中,导航到包含 .ps1 文件的文件夹并运行 Set-SiteMailboxConfig.ps1 脚本
http://rdsrv.blog.运维网.com/attachment/201307/18/2996778_1374135730xPcI.png
  再检查下:
http://rdsrv.blog.运维网.com/attachment/201307/18/2996778_13741357381agN.png
  再回到Exchange服务器上以管理员方式运行exchange powershell
  .\Configure-EnterprisePartnerApplication.ps1 -ApplicationType Sharepoint -AuthMetadataUrl https://moss13.windows.com/_layouts/15/metadata/json/1
http://rdsrv.blog.运维网.com/attachment/201307/18/2996778_1374135739CpNL.png
http://rdsrv.blog.运维网.com/attachment/201307/18/2996778_1374135745G3Wa.png
  这样就配置好了哦,效果是怎么样的尽情关注下一篇文章吧,嘿嘿~



页: [1]
查看完整版本: 配置Sharepoint 2013站点邮箱