这两天新做了一个SharePoint的开发环境,当中有一个OWA的服务器,直接连上Windows Updates一顿狂升级,然后就用不了。
找到了半天的错误信息,然后翻墙找问题,结果问题居然是OWA每升级一次,就要重新创建OWA的Farm。
不吐槽了,开始重建:
首先退场:
Remove-OfficeWebAppsMachine
然后重新建场,其实和第一次创建是一样的:
New-OfficeWebAppsFarm -InternalURL "http://Contoso-WAC" -AllowHttp -EditingEnabled
原文地址:http://www.ithome.com/html/soft/89817.htm
在找WindowsLiveWriter2012的安装包的时候看到的,不知道是不是原始链接。
不过真是喜闻乐见。
在SharePoint 2013的PerformancePoint仪表板设计器在创建链接到AnalysisServices 2012的数据链接的时候,数据库列表无法获取服务器上的数据库。这个问题挺让人困惑的。翻墙查询,发现有老外对问题作了分析,还提出了解决办法。
“Why can’t SharePoint Dashboard Designer 2013 connect to SQL Analysis Services 2012?”里面找到是ADOMD的版本过新导致的问题,并给出了老版版的ADOMD的下载地址:http://www.microsoft.com/en-us/download/details.aspx?id=16978。
<runtime>
<assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
<dependentAssembly>
<assemblyIdentity name="Microsoft.AnalysisServices.AdomdClient" publicKeyToken="89845dcd8080cc91" culture="neutral" />
<bindingRedirect oldVersion="9.0.0.0" newVersion="10.0.0.0" />
</dependentAssembly>
</assemblyBinding>
</runtime>
将其中的
oldVersion="9.0.0.0" newVersion="10.0.0.0"
修改为
OldVersion="10.0.0.0" newVersion="11.0.0.0"
然后重启IIS。
这个方法使得PerformancePoint可以使用最新版的ADOMD,也就不用再装老版本的ADOMD了。
近期评论