站点邮箱是Sharepoint 2013的新功能,不知道大家是否知晓,可以在一个网站集下的项目网站上开启站点邮箱,这样根据项目的邮件都会在这里进行汇总,方便相关的管理和查阅,无论是项目老成员还是新成员都可以看到项目的前后始末~那怎么配置呢?

可以根据项目在sharepoint 2013中利用Exchange 2013配置站点邮箱

首先需要创建443的WEB应用程序以及443下的网站集。

为什么呢?因为需要证书来完成信任

Sharepoint 2013的系统最好为windows Server 2012

配置Sharepoint 2013站点邮箱

创建一个User Profile Service应用

配置Sharepoint 2013站点邮箱

配置Sharepoint 2013站点邮箱

配置Sharepoint 2013站点邮箱

配置Sharepoint 2013站点邮箱

接着用Powershell开启NetBIOS

$ServiceApps = Get-SPServiceApplication

$UserProfileServiceApp = "" 

foreach ($sa in $ServiceApps) 

{if ($sa.DisplayName -eq "< UPSAname >") 

{$UserProfileServiceApp = $sa} 

$UserProfileServiceApp.NetBIOSDomainNamesEnabled = 1 

$UserProfileServiceApp.Update() 

其中< UPSAname >替换成上面的:

配置Sharepoint 2013站点邮箱

名称,保存成EnableNetBIOS.ps1

接着运行:

配置Sharepoint 2013站点邮箱

配置Sharepoint 2013站点邮箱

配置Sharepoint 2013站点邮箱

启动用户配置文件服务

配置Sharepoint 2013站点邮箱

配置Sharepoint 2013站点邮箱

重置IIS

Iisreset

用户配置文件同步

创建一个同步连接:

配置Sharepoint 2013站点邮箱

配置Sharepoint 2013站点邮箱

配置Sharepoint 2013站点邮箱

配置Sharepoint 2013站点邮箱

配置Sharepoint 2013站点邮箱

配置Sharepoint 2013站点邮箱

配置Sharepoint 2013站点邮箱

开始同步

配置Sharepoint 2013站点邮箱

配置Sharepoint 2013站点邮箱

配置Sharepoint 2013站点邮箱

配置Sharepoint 2013站点邮箱

刷新页面

配置Sharepoint 2013站点邮箱

应用程序管理服务应用

配置Sharepoint 2013站点邮箱

配置Sharepoint 2013站点邮箱

配置Sharepoint 2013站点邮箱

配置Sharepoint 2013站点邮箱

配置Sharepoint 2013站点邮箱

启动程序管理服务应用

配置Sharepoint 2013站点邮箱

配置Sharepoint 2013站点邮箱

创建一个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="ExchangeWebServicesApi_Feature,ExchangeWebServicesApi_Gac"

配置Sharepoint 2013站点邮箱

安装完重启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 服务器上的同一文件夹中,因为在执行期间一个脚本将调用另一个脚本。

我先检查下:

配置Sharepoint 2013站点邮箱

在 SharePoint PowerShell 窗口(右键单击并选择“以管理员身份运行”可打开该窗口)中,导航到包含 .ps1 文件的文件夹并运行 Set-SiteMailboxConfig.ps1 脚本

配置Sharepoint 2013站点邮箱

再检查下:

配置Sharepoint 2013站点邮箱

再回到Exchange服务器上以管理员方式运行exchange powershell

.\Configure-EnterprisePartnerApplication.ps1 -ApplicationType Sharepoint -AuthMetadataUrl https://moss13.windows.com/_layouts/15/metadata/json/1

配置Sharepoint 2013站点邮箱

配置Sharepoint 2013站点邮箱

这样就配置好了哦,效果是怎么样的尽情关注下一篇文章吧,嘿嘿~