我最近从
。安装顺利进行,语言包成功安装。完成安装后,安装向导会提示我运行SharePoint 2010产品配置向导。

我ran sharepoint 2010产品配置向导,它开始执行。在第9步骤中有一个简短的暂停 - 初始化升级序列。然后向导失败了以下消息:

无法初始化升级序列。

类型roction.sharepoint.upgrade.spgradeexception被抛出。其他例外信息:抛出“Microsoft.SharePoint.upgrade.Spgradeexception”类型的异常。

我分析了所提供的日志文件并找到以下异常:

任务upgradebootstrap失败,未知异常。

从事件查看器中找到更多详细信息:

无法启动升级序列。抛出了Microsoft.SharePoint.upgrade.SpgradeException类型的异常。其他例外信息:抛出“Microsoft.SharePoint.upgrade.Spgradeexception”类型的异常。 Microsoft.SharePoint.upgrade.spgradeexception:抛出“Microsoft.SharePoint.upgrade.SpupgradeException”类型的异常。在Microsoft.SharePoint.upgrade.spmanager.bootstrap(guid sessionid,spupgradeoperationflags标志)在microsoft.sharepoint.postsetupconfiguration.hospoint.postsetupconfiguration.taskThrad.executeTask()

我浏览了网络并找到了几个问题。但是,没有一个解决方案似乎有效。我甚至下载了 Microsoft图表工具并将它们安装为一个推荐的一篇文章,但是没有有效。配置向导仍然失败。 不幸的是,当涉及到SharePoint时,我在我的知识绳子的尽头。有没有人有任何想法?

编辑:

在一些进一步的调试后,我发现以下消息上面详细的例外消息:

05/29/2014 10:51:28 12 err任务upgandadbootstrap已失败

05/29/2014 10:51:28 12 inf friendlymessage for task upgrodebootstrap是royic.sharepoint.upgrade.spupgradeexception的类型的异常。其他例外信息:抛出“Microsoft.SharePoint.upgrade.Spgradeexception”类型的异常。

05/29/2014 10:51:28 1 inf Resource检索ID UpgradeBootStrapTaskFailConfigDisplayLabel无法启动升级序列。

05/29/2014 10:51:28 1 inf离开函数stringresourcemanager.getresourcestring

05/29/2014 10:51:28 1 inf更新进度条下面的任务标签未能启动升级序列。

似乎与前一条消息似乎没有更多的帮助。

编辑2:升级日志

[psconfig] [spdelegateManager] [信息] [5/29/2014 12:03:13 PM]:没有上下文对象 [psconfig] [spdelegateManager] [错误] [5/29/2014 12:03:13 PM]:无法调用汇编Microsoft.Office.InfoPath.server,Version= 14.0.0.0,Culture= Neutral,PublicKeyToken= 71E9BCE111E9429C 。无法加载文件或汇编'microsoft.office.infopath,版本= 15.0.0.0,Culture= Neutral,PublicKeyToken= 71E9BCE111E9429C'或其依赖项之一。

有帮助吗?

解决方案

As per the error

Failed to call GetTypes on assembly Microsoft.Office.InfoPath.Server, Version=14.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c. Could not load file or assembly 'Microsoft.Office.InfoPath, Version=15.0.0.0, Culture=neutral, PublicKeyToken=71e9bce111e9429c' or one of its dependencies.

office 2013 is your problem. the assembly mentioned is info path which having conflict with sharepoint. i recommend uninstall the office and then try again.

其他提示

Few things to check here:

  1. Ensure you have downloaded the language pack for each service pack. For instance, if you have Service Pack 2 installed, download the language pack for the RTM version (which you linked), Service Pack 1, and Service Pack 2.
  2. Try turning off UAC (user account control) in the Users section of the Control Panel in Windows. Reboot and then try again. Sometimes UAC messes up PSConfig for 2010.
  3. There should be a log file linked on the fail screen. If the above doesn't work, open that log file to look for warnings and errors. That will give us a better indication of what to look for.

EDIT

It looks like you have the InfoPath client installed (part of Office). When you install InfoPath on a SharePoint server, the assemblies between the two conflict. Remove InfoPath (or Office all-together) and you should be good to go.

I got past this error by removing InfoPath from the GAC.

This link, https://vinayjayaram.wordpress.com/2013/09/26/office-2013-breaks-sharepoint-2010-an-exception-of-type-microsoft-sharepoint-upgrade-spupgradeexception-was-thrown/, which references this article, https://community.dynamics.com/ax/b/mafsarkhan/archive/2013/08/05/office-2013-breaks-sharepoint-2010-an-exception-of-type-microsoft-sharepoint-upgrade-spupgradeexception-was-thrown, recommended deleting the InfoPath DLLs from the GAC.

Rather than deleting the folders, I moved them to a new folder outside the GAC.

Delete the following folders from C:\Windows\assembly\GAC_MSIL. (Alternatively, move them outside the GAC.)

  • Policy.14.0.Microsoft.Office.InfoPath
  • Policy.14.0.Microsoft.Office.InfoPath.Client.Internal.Host
  • Policy.14.0.Microsoft.Office.InfoPath.FormControl

Then re-run the Configuration wizard

许可以下: CC-BY-SA归因
scroll top