adam gordon [email protected]. upgrading from sharepoint 2010 to sharepoint 2013

Download Adam Gordon adam.gordon@newhorizons.com. Upgrading from SharePoint 2010 to SharePoint 2013

If you can't read please download the document

Upload: geraldine-freeman

Post on 16-Dec-2015

213 views

Category:

Documents


0 download

TRANSCRIPT

  • Slide 1
  • Adam Gordon [email protected]
  • Slide 2
  • Slide 3
  • Upgrading from SharePoint 2010 to SharePoint 2013
  • Slide 4
  • Upgrading Step by Step
  • Slide 5
  • Multiple Methods Supported In Place Database Attach Hybrid Cannot Skip Versions 2001 > 2003 2003 > 2007 2007 > 2010 Single Method Database Attach Cannot skip versions 2010 > 2013 Now
  • Slide 6
  • Slide 7
  • Upgrade Methods
  • Slide 8
  • What Can Be Upgraded?
  • Slide 9
  • Slide 10
  • Authentication Mode Support
  • Slide 11
  • Deferred Site Collection Upgrade
  • Slide 12
  • Site Collection Health Checks
  • Slide 13
  • Slide 14
  • Upgrade Evaluation Site Collections
  • Slide 15
  • Slide 16
  • New Upgrade Notifications
  • Slide 17
  • SPSite /sites/foo Snapshot Database R/O Content Database Content Database Configuration Database SPSite /sites/foo SPSite Cloning Clone SPSite /sites/foo-eval Evaluation SPSite /sites/foo-eval Sites Site Map AllDocs AllWebs AllSites AllDocs AllWebs AllSites Filtered Copy Of AllSites Filtered Copy Of AllWebs Filtered Copy Of AllDocs Filtered Copy Of / /sites/foo /sites/foo-eval Timer Job: Create Evaluation Sites 1 2 3 4 5 4 6
  • Slide 18
  • Workflows
  • Slide 19
  • Slide 20
  • Gather Information
  • Slide 21
  • Customizations Gathering
  • Slide 22
  • Slide 23
  • UpgradeMigration
  • Slide 24
  • Choosing Migration vs. Upgrade
  • Slide 25
  • Spring Cleaning For A Healthy Farm
  • Slide 26
  • Slide 27
  • Operating System Windows Server 2008R2 SP1 Windows Server 2012 (Recommended) SQL SQL Server 2008 R2 with SP1+ SQL Server 2012 (Recommended)
  • Slide 28
  • Client Software Requirements
  • Slide 29
  • Get started with SharePoint Download and experience SharePoint http://technet.microsoft.com/en-US/evalcenter/hh973397.aspx?wt.mc_id=TEC_121_1_4 Learn more http://sharepoint.microsoft.com/
  • Slide 30
  • Supported Databases Content databases Project databases Search admin database Profile database Social database Managed Metadata database Secure Store database - Passphrase Req. Access databases B2B Only
  • Slide 31
  • Slide 32
  • Slide 33
  • Slide 34
  • $WebAppName = "http://sp2010/" $wa = get-SPWebApplication $WebAppName $wa.UseClaimsAuthentication = $true $wa.Update()
  • Slide 35
  • $account = "spdom\administrator" $account = (New-SPClaimsPrincipal -identity $account - identitytype 1).ToEncodedString() $wa = get-SPWebApplication $WebAppName $zp = $wa.ZonePolicies("Default") $p = $zp.Add($account,"PSPolicy") $fc=$wa.PolicyRoles.GetSpecialRole("FullControl") $p.PolicyRoleBindings.Add($fc) $wa.Update() $wa.MigrateUsers($true) $wa.ProvisionGlobally() Notice the tp_Login Columns
  • Slide 36
  • $webapp = Get-SPWebApplication http://sp2010 $webapp.Properties["portalsuperuseraccount"] = "i:0#.w|spdom\sp_cachesuperuser" $webapp.Properties["portalsuperreaderaccount"] = "i:0#.w|spdom\sp_cachesuperreader" $webapp.Update() Make sure you test with other users
  • Slide 37
  • Slide 38
  • Slide 39
  • Slide 40
  • Slide 41
  • Slide 42
  • Slide 43
  • Slide 44
  • SP15 App Process Space SP15 Config Database SP15 Content Database SPSite SPWeb SPSite SPWeb WSE/14/TemplatesWSE/15/Templates /_layouts/ /_layouts/15/ WSE/14/Templates/ Layouts WSE/15/Templates/ Layouts Page Code 14 Assembly Redirect Policy 14 Assembly Redirect Policy 15 Assembly 15 Assembly In-process request routing 14 Mode Site Page 15 Mode Site Page
  • Slide 45
  • WSE\14\Templates Site Definition Template STS#2 Template STS#1 Site Definition Feature Definition WSE\14\TemplatesWSE\15\Templates Site Definition Template STS#2 Template STS#1 Site Definition Feature Definition WSE\15\Templates SPSite SPWeb Feature SPSite SPWeb SPSite SPWeb Feature SPSite SPWeb SP15 Content Database
  • Slide 46
  • SP14 feature replaced by SP15 feature Non-replaced O14 only feature (e.g. 3 rd party) SP14 feature removed in SP15 14 Mode Features List SP15 feature replacing SP14 feature New SP15 only feature Sunset feature Visible=false 15 Mode Features List 15 Mode Lookups 14 Mode Lookups
  • Slide 47
  • Slide 48
  • Slide 49
  • Slide 50