質問

SharePoint複数のバージョンで作業しています。
私の顧客の1人は、 SharePoint 2010(Foundation)から2013 へのアップグレードを求めています。
私は以下を知りたいのです:

  1. SharePoint 2010から2013へのアップグレードの手順
  2. ソリューションに影響を与える可能性がある既存のシステムへの影響。
    1. サンドボックスソリューション
    2. 農場のソリューション
    3. OOTBソリューション

      最も重要なことは、承認のために実行されている私のワークフローです、そしてアプリケーションページイベント受信機 search 影響を受ける可能性があります。
      これらすべてを処理するための正しい手順である可能性があります。

      アップデート(2014年2月17日):
      私はSPDワークフローとVisual Studioのワークフローを持っています。
      Visual Studioで開発されたアプリケーションページがあります。
      私はSPDフォーム(SPD 2010で開発されたカスタムページ)を持っています。
      Visual Studio 2010で開発されたタイマージョブとイベント受信機があります。

役に立ちましたか?

解決

Steps to Upgrade from SP 2010 to SP 2013: Make the site in SP 2010 readonly. Using SQL Management Studio, perform the backup of Content database and service database in SP 2010. Restore the databases in SP 2013 SQL server. Attach the content database to a site collection in SP 2013. Similarly, attach the service databse to the corresponding service in SP 2013. For more info please refer: http://sharepointnadeem.blogspot.com/2013/12/sharepoint-2013-upgrade-from-sharepoint.html

UPDATE

SharePoint 2010 workflows are supported in SP 2013 also. The only issue I faced while doing migration of SP 2010 site having workflows was about workflow activities:

The type or namespace name 'AssemblyName' could not be found (are you missing a using directive or an assembly reference?)". at Microsoft.SharePoint.Workflow.SPNoCodeXomlCompiler.LoadXomlAssembly(SPWorkflowAssociation association, SPWeb web) at Microsoft.SharePoint.Workflow.SPWinOeHostServices.LoadDeclarativeAssembly(SPWorkflowAssociation association, Boolean fallback) at Microsoft.SharePoint.Workflow.SPWinOeHostServices.CreateInstance(SPWorkflow workflow) at Microsoft.SharePoint.Workflow.SPWinOeEngine.RunWorkflow(SPWorkflowHostService host, SPWorkflow workflow, Collection`1 events, TimeSpan timeOut)
at Microsoft.SharePoint.Workflow.SPWorkflowManager.RunWorkflowElev(SPWorkflow workflo...

Opening the workflows associated with these lists from SharePoint Designer resulted in the error: Could not deserialize object. The type could not be resolved.

Resolution: Web.config files needs to be modified. For SharePoint 2010 custom activities to work in SharePoint 2013, the “authorizedType” node needs to be defined in a new sub-section “targetFx” under the “authorizedTypes” section.

I also had plenty of event recievers and they all worked very well.

ライセンス: CC-BY-SA帰属
所属していません sharepoint.stackexchange
scroll top