Question

Je travaille sur des versions multiples SharePoint.
Un de mes clients demande une mise à niveau de SharePoint 2010 (Fondation) à 2013 .
J'aimerais connaître ci-dessous:

  1. Étapes pour mettre à niveau SharePoint 2010 en 2013.
  2. Impact sur le système existant pouvant affecter des solutions.
    1. Solutions Sandbox
    2. Solutions agricoles
    3. OOTB Solutions

      Les plus importants sont mes flux de travail qui fonctionnent pour approbation et il existe pages d'application , récepteurs d'événements et de recherche qui peut être affecté.
      Quelle pourrait être la procédure correcte pour gérer tous ceux-ci.

      Mise à jour (17 févr. 2014):
      J'ai des flux de travail SPD et des flux de travail Visual Studio.
      J'ai des pages d'application développées dans Visual Studio.
      J'ai des formes SPD (pages personnalisées développées dans SPD 2010).
      J'ai des emplois de minuterie et des récepteurs d'événements développés dans Visual Studio 2010.

Était-ce utile?

La solution

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.

Licencié sous: CC-BY-SA avec attribution
Non affilié à sharepoint.stackexchange
scroll top