SlideShare a Scribd company logo
1 of 21
Download to read offline
SharePoint Migration
What do I expect ?
THE ISSUES AND SOLUTIONS
By K.Mohamed Faizal , www.zquad.in / @kmdfaizal
@ SharePoint CoP on 31st Jan 2013
Migration
There are tons of resources on the Internet today that tell you how to migrate your SharePoint
2007 environment to SharePoint 2010.
Sometimes, achieving something becomes difficult due to of lack of information, This
presentation will help you in achieving your migration goal.
You may probably have seen these articles or links that talk about
 ◦   Top 5 SharePoint Migration Pitfalls
 ◦   Database attach or Backup-SPSite / Restore-SPSite
 ◦   Understand the SharePoint Migration Schedule
 ◦   Understand Your SharePoint Customizations Before Migrating

In this presentation, I am going to cover the issue that you may discover during your migration
or after migration. ?
Solution :
                                                                http://www.zquad.in/2010/07/sharep
                                                                oint-2010-blank-page-display-401.html

1 Blank Page display
  NO ERROR message displayed it display just Blank White Page
  <httpErrors errorMode="Custom" existingResponse="Auto" >
Solution :
                                                                     http://www.zquad.in/2010/07/sharep
                                                                     oint-2010-blank-page-display-401.html

1 Blank Page display
• Click Start, click Run, type regedit, and then click OK.
• In Registry Editor, locate and then click the following registry
  key:
  HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlLs
  aMSV1_0
• Right-click MSV1_0, point to New, and then click Multi-String
  Value.
• Type BackConnectionHostNames, and then press ENTER.
• Right-click BackConnectionHostNames, and then click Modify.
• In the Value data box, type the host name or the host names
  for the sites that are on the local computer, and then click OK.
• Quit Registry Editor, and then restart the IISAdmin service.
http://claytoncobb.wordpress.com/2011/01
                        /07/sharepoint-2010-how-to-open-files-

2 Open PDF files in browser
                        that-prompt-for-save-or-cancel/
http://claytoncobb.wordpress.com/2011/01
                                  /07/sharepoint-2010-how-to-open-files-

2 Open PDF files in browser
                                  that-prompt-for-save-or-cancel/


   Central Admin >
   Application Management >
   Manage Web Applications
   Single-click the row of your
   web application
   Click General Settings in
   the ribbon
   Scroll down to Browser File
   Handling and select
   Permissive
http://www.pdfshareforms.com/s
                                                                        harepoint-2010-and-pdf-


2 Open PDF files in browser
                                                                        integration-series-part-1/



  Once you enabled “Permissive” Browser File Handling, SharePoint will allow all documents be
  opened in the browser. Today, there is no “out-of-the-box” option to allow Permissive option for
  PDF documents only
  How to overcome this ?
3 Subscribed alerts will not work
  Description                      Old URL                          New URL
  Intranet                         http://intranet.sharepoint.com   http://inet.sharepoint.com


  Issue due to                                                         Solution Source
  The host name changed.                                               http://technet.microsoft.com/en-
  The port that the Web application uses changed.                      us/library/cc508847.aspx#section2
  The name of the server changed.
                                                                       http://www.sharepointdiary.com/201
                                                                       1/10/fix-alerts-in-sharepoint-
  Invoke-AlertFixup -site http://inet.sharepoint.com -oldurl           migration.html
  http://intranet.sharepoint.com
4 Site collection is locked
  Monday morning, the calls started for some reason,
  Long-time users were unable to edit list items?
  I figured this may permissions issue ? so I popped in to look at the Site Settings and found that
  everything alright
  A quick trip to Central Administration showed that I was still listed as a Site Collection
  Administrator
4 Site collection is locked
   Resolution :
   If the site collection keeps going to read only mode, we must         Application Management->SharePoint
   check whether site collection is locked, if it is locked then we      Site Management->Site collection
   must see whether the backup is running during that time, by           quotas and locks.
   default if you run the backup via stsadm or powershell.
   The site collection will get locked automatically and go read
   only mode and after finish the backup will automatically revert
   to normal.
   Note that sometime the third party backup software run
   during that time.

   Fire up stsadm and issue the following command:
   stsadm -o setsitelock -url http://myportalsitecollection -lock none
5 People picker
  One-way trust between our SharePoint domain (A) and domain (B).
  We would like to have users from the external domain be able to access our SharePoint portal.
  We also want to be able to search for those external users in the people picker.




                Returning no results when searching for
                users by name, or browsing all users
5 People picker
  stsadm -o setapppassword -password password
  (Needs to be executed at every server in the farm for one time.)
  stsadm -o setproperty -pn peoplepicker-searchadforests -pv
  "domain:domaintosearch.com,username,password" -url
  http://centraladminurl


  Stsadm –o setproperty –pn peoplepicker-setadsearchforests –pv
  "domain:domaintosearch.com,username,password" -url
  http://centraladminurl
6 Search Results
  One-way trust between our SharePoint domain (A) and domain (B).
  You install and configure a beautiful, fresh, and pristine SharePoint environment
  Test search by performing a full crawl. Results are returned. All’s good. Right?
  Now, User (DomainBUser1) has access to content crawled on DomainA.

  DomainBUser1 is returned zero results when he or she issues a search query on DomainA.
6 No Search Results
   This scenario occurs if you have a one-way trust established and are performing a search with a
   user from the trusted domain.
   In order to rectify this situation, you’ll have to configure your Search Service Application to store
   ACLs in Claims format. To do this, you’ll have to use PowerShell

                                                                                             Source:
           $searchapp = Get-SPEnterpriseSearchServiceApplication                             http://support.microsoft.com/k
           $searchapp.SetProperty("ForceClaimACLs",1)                                        b/2344518



  Security trimming is done in the query processor(QP). In SharePoint 2010, the QP has moved from the WFE to the query servers.
  Since the WFE only sends the user’s SID to the QP, AuthZ API fails to authenticate across domains.
  In SharePoint 2007, security trimming was done in the WFE. The AuthZ API worked as the querying user’s group information was available.
7 Absolute links to relative URLs
   Common concerns during SharePoint upgrades are hard-coded or broken links
   By default, the list or the document library link has been added to the Quick Launch on the left hand side of your site
   That kind of link upgrades with no issues since it is a relative link that SharePoint knows about and knows how to call and
   reference.
   When users, such as site owners, manipulate the Quick Launch navigation and add additional links, they manually type in
   the address and description, so that it is easier for their end users to access the link content, that link is what gets broken
   after an upgrade.


                                                                                                Solution Source :
                                                                                                http://sharepointquester.com/201
                                                                                                2/10/30/updating-sharepoint-
                                                                                                absolute-urls-with-relative-urls-
                                                                                                using-windows-powershell/
Fixing Missing Web Part & Feature
8 issues
  re-upgrade check is telling you that some web parts are being referenced but they are installed on the server. It
  should look something like this

  The following web part(s) are referenced by the content, but they are not installed on the web server
  Id = GUID, Type = Unknown, Reference = 2, Status = Missing

  stsadm.exe -o enumallwebs -includewebparts > N:enumwebs.txt
Fixing Missing Web Part & Feature
8 issues
  The following feature(s) are referenced by the content, but they are not installed on the web server
  Name = Unknown, Feature id = GUID, Reference count = 43, Scope = Web, Status = Missing



                                                                                             Source :
                                                                                             http://sharepointrepor
                                                                                             ter.wordpress.com/


                                                                                             CodePlex :
                                                                                             http://featureadmin.co
                                                                                             deplex.com/
User Migration from Domain A to
9 Domain B
   Make sure that you full control permission for the login user for the User profile service
   application (UPS). And also ensure that you login using service account.
   When you click on a user in a SharePoint list item with the column type is Person or Group Name
   (With Presence), you may get a page cannot be displayed error.
9 User Migration from
  Domain A to Domain B
10   Missing Event Receivers
     During SharePoint 2010 Migration, Preupgradecheck reported the issue of missing Event
     Receivers:
     stsadm -o enumallwebs -includeeventreceivers > EventReceivers.txt
     Un-Register the Event Receivers:
     Download http://speventreceiverman.codeplex.com/




                                                                            Source :
                                                                            http://www.sharepointdiary.c
                                                                            om/2011/08/fix-missing-
                                                                            event-receivers-issue-in.html
SharePoint




                By K.Mohamed Faizal ,
Lead Consultant, Chief Architect Office
                NCS (P) Ltd, Singapore
     www.zquad.in / @kmdfaizal

More Related Content

What's hot

Hexa Corp Share Point Capabilities Presentation
Hexa Corp Share Point Capabilities PresentationHexa Corp Share Point Capabilities Presentation
Hexa Corp Share Point Capabilities Presentationsrgk27
 
Migrating to SharePoint 2013 - Business and Technical Perspective
Migrating to SharePoint 2013 - Business and Technical PerspectiveMigrating to SharePoint 2013 - Business and Technical Perspective
Migrating to SharePoint 2013 - Business and Technical PerspectiveJohn Calvert
 
How to implement SharePoint in your organization
How to implement SharePoint in your organizationHow to implement SharePoint in your organization
How to implement SharePoint in your organizationSPC Adriatics
 
SharePoint 2010 Online for Developer
SharePoint 2010 Online for DeveloperSharePoint 2010 Online for Developer
SharePoint 2010 Online for DeveloperK.Mohamed Faizal
 
Workflow Manager Tips & Tricks
Workflow Manager Tips & TricksWorkflow Manager Tips & Tricks
Workflow Manager Tips & TricksMai Omar Desouki
 
SharePoint 2013 Admin in the Hybrid World
SharePoint 2013 Admin in the Hybrid WorldSharePoint 2013 Admin in the Hybrid World
SharePoint 2013 Admin in the Hybrid WorldJason Himmelstein
 
Digital asset management using SharePoint 2013
Digital asset management using SharePoint 2013Digital asset management using SharePoint 2013
Digital asset management using SharePoint 2013Karthick S
 
SharePoint Server 2013 Farm Architecture and Performance by Ben Curry - SPTec...
SharePoint Server 2013 Farm Architecture and Performance by Ben Curry - SPTec...SharePoint Server 2013 Farm Architecture and Performance by Ben Curry - SPTec...
SharePoint Server 2013 Farm Architecture and Performance by Ben Curry - SPTec...SPTechCon
 
SharePoint 2007 and 2010 + Use Cases
SharePoint 2007 and 2010 + Use CasesSharePoint 2007 and 2010 + Use Cases
SharePoint 2007 and 2010 + Use Casesjovojovo
 
Sharepoint 2010 overview - what it is and what it can do
Sharepoint 2010 overview - what it is and what it can doSharepoint 2010 overview - what it is and what it can do
Sharepoint 2010 overview - what it is and what it can doFaisal Masood
 
SharePoint BCS, OK. But what is the SharePoint Business Data List Connector (...
SharePoint BCS, OK. But what is the SharePoint Business Data List Connector (...SharePoint BCS, OK. But what is the SharePoint Business Data List Connector (...
SharePoint BCS, OK. But what is the SharePoint Business Data List Connector (...Layer2
 
Migrate to share point 2016 (presentation)
Migrate to share point 2016 (presentation) Migrate to share point 2016 (presentation)
Migrate to share point 2016 (presentation) chanduraj1984
 
Full Trust Solution Development in SharePoint 2013
Full Trust Solution Development in SharePoint 2013Full Trust Solution Development in SharePoint 2013
Full Trust Solution Development in SharePoint 2013Ed Musters
 
2014-02-22 - IT Pro Camp - SharePoint 2013, A Brief Overview of Capability
2014-02-22 - IT Pro Camp - SharePoint 2013, A Brief Overview of Capability2014-02-22 - IT Pro Camp - SharePoint 2013, A Brief Overview of Capability
2014-02-22 - IT Pro Camp - SharePoint 2013, A Brief Overview of CapabilityDan Usher
 
What's New and Different in SharePoint 2013
What's New and Different in SharePoint 2013What's New and Different in SharePoint 2013
What's New and Different in SharePoint 2013Noorez Khamis
 
SPCAdriatics - Search Administration and Troubleshooting in SharePoint 2013
SPCAdriatics - Search Administration and Troubleshooting in SharePoint 2013SPCAdriatics - Search Administration and Troubleshooting in SharePoint 2013
SPCAdriatics - Search Administration and Troubleshooting in SharePoint 2013Agnes Molnar
 
SharePoint Saturday Chicago Suburbs 2016 - Modern Intranet Development Best P...
SharePoint Saturday Chicago Suburbs 2016 - Modern Intranet Development Best P...SharePoint Saturday Chicago Suburbs 2016 - Modern Intranet Development Best P...
SharePoint Saturday Chicago Suburbs 2016 - Modern Intranet Development Best P...Nik Patel
 
Utilizing SharePoint for Project Management
Utilizing SharePoint for Project ManagementUtilizing SharePoint for Project Management
Utilizing SharePoint for Project ManagementGregory Zelfond
 
SharePoint 2010 Upgrade Planning
SharePoint 2010 Upgrade PlanningSharePoint 2010 Upgrade Planning
SharePoint 2010 Upgrade PlanningChaitu Madala
 

What's hot (20)

Hexa Corp Share Point Capabilities Presentation
Hexa Corp Share Point Capabilities PresentationHexa Corp Share Point Capabilities Presentation
Hexa Corp Share Point Capabilities Presentation
 
Migrating to SharePoint 2013 - Business and Technical Perspective
Migrating to SharePoint 2013 - Business and Technical PerspectiveMigrating to SharePoint 2013 - Business and Technical Perspective
Migrating to SharePoint 2013 - Business and Technical Perspective
 
How to implement SharePoint in your organization
How to implement SharePoint in your organizationHow to implement SharePoint in your organization
How to implement SharePoint in your organization
 
SharePoint 2010 Online for Developer
SharePoint 2010 Online for DeveloperSharePoint 2010 Online for Developer
SharePoint 2010 Online for Developer
 
Workflow Manager Tips & Tricks
Workflow Manager Tips & TricksWorkflow Manager Tips & Tricks
Workflow Manager Tips & Tricks
 
SharePoint 2013 Admin in the Hybrid World
SharePoint 2013 Admin in the Hybrid WorldSharePoint 2013 Admin in the Hybrid World
SharePoint 2013 Admin in the Hybrid World
 
Digital asset management using SharePoint 2013
Digital asset management using SharePoint 2013Digital asset management using SharePoint 2013
Digital asset management using SharePoint 2013
 
SharePoint Server 2013 Farm Architecture and Performance by Ben Curry - SPTec...
SharePoint Server 2013 Farm Architecture and Performance by Ben Curry - SPTec...SharePoint Server 2013 Farm Architecture and Performance by Ben Curry - SPTec...
SharePoint Server 2013 Farm Architecture and Performance by Ben Curry - SPTec...
 
How to prepare for your SharePoint upgrade
How to prepare for your SharePoint upgradeHow to prepare for your SharePoint upgrade
How to prepare for your SharePoint upgrade
 
SharePoint 2007 and 2010 + Use Cases
SharePoint 2007 and 2010 + Use CasesSharePoint 2007 and 2010 + Use Cases
SharePoint 2007 and 2010 + Use Cases
 
Sharepoint 2010 overview - what it is and what it can do
Sharepoint 2010 overview - what it is and what it can doSharepoint 2010 overview - what it is and what it can do
Sharepoint 2010 overview - what it is and what it can do
 
SharePoint BCS, OK. But what is the SharePoint Business Data List Connector (...
SharePoint BCS, OK. But what is the SharePoint Business Data List Connector (...SharePoint BCS, OK. But what is the SharePoint Business Data List Connector (...
SharePoint BCS, OK. But what is the SharePoint Business Data List Connector (...
 
Migrate to share point 2016 (presentation)
Migrate to share point 2016 (presentation) Migrate to share point 2016 (presentation)
Migrate to share point 2016 (presentation)
 
Full Trust Solution Development in SharePoint 2013
Full Trust Solution Development in SharePoint 2013Full Trust Solution Development in SharePoint 2013
Full Trust Solution Development in SharePoint 2013
 
2014-02-22 - IT Pro Camp - SharePoint 2013, A Brief Overview of Capability
2014-02-22 - IT Pro Camp - SharePoint 2013, A Brief Overview of Capability2014-02-22 - IT Pro Camp - SharePoint 2013, A Brief Overview of Capability
2014-02-22 - IT Pro Camp - SharePoint 2013, A Brief Overview of Capability
 
What's New and Different in SharePoint 2013
What's New and Different in SharePoint 2013What's New and Different in SharePoint 2013
What's New and Different in SharePoint 2013
 
SPCAdriatics - Search Administration and Troubleshooting in SharePoint 2013
SPCAdriatics - Search Administration and Troubleshooting in SharePoint 2013SPCAdriatics - Search Administration and Troubleshooting in SharePoint 2013
SPCAdriatics - Search Administration and Troubleshooting in SharePoint 2013
 
SharePoint Saturday Chicago Suburbs 2016 - Modern Intranet Development Best P...
SharePoint Saturday Chicago Suburbs 2016 - Modern Intranet Development Best P...SharePoint Saturday Chicago Suburbs 2016 - Modern Intranet Development Best P...
SharePoint Saturday Chicago Suburbs 2016 - Modern Intranet Development Best P...
 
Utilizing SharePoint for Project Management
Utilizing SharePoint for Project ManagementUtilizing SharePoint for Project Management
Utilizing SharePoint for Project Management
 
SharePoint 2010 Upgrade Planning
SharePoint 2010 Upgrade PlanningSharePoint 2010 Upgrade Planning
SharePoint 2010 Upgrade Planning
 

Viewers also liked

10 Reasons your SharePoint Migration Failed
10 Reasons your SharePoint Migration Failed10 Reasons your SharePoint Migration Failed
10 Reasons your SharePoint Migration FailedBenjamin Niaulin
 
SharePoint Saturday Stockholm 2015 - SharePoint Online Friend or Foe
SharePoint Saturday Stockholm 2015 - SharePoint Online Friend or FoeSharePoint Saturday Stockholm 2015 - SharePoint Online Friend or Foe
SharePoint Saturday Stockholm 2015 - SharePoint Online Friend or FoeJasper Oosterveld
 
Planning Your Migration to SharePoint Online #SPBiz60
Planning Your Migration to SharePoint Online #SPBiz60Planning Your Migration to SharePoint Online #SPBiz60
Planning Your Migration to SharePoint Online #SPBiz60Christian Buckley
 
Hệ thống thông tin quản lý - Bài 8 Phát triển hệ thống thông tin (phần 3)
Hệ thống thông tin quản lý - Bài 8 Phát triển hệ thống thông tin (phần 3)Hệ thống thông tin quản lý - Bài 8 Phát triển hệ thống thông tin (phần 3)
Hệ thống thông tin quản lý - Bài 8 Phát triển hệ thống thông tin (phần 3)MasterCode.vn
 
Bài 3: Thao tác với dữ liệu SharePoint từ phía client
Bài 3: Thao tác với dữ liệu SharePoint từ phía clientBài 3: Thao tác với dữ liệu SharePoint từ phía client
Bài 3: Thao tác với dữ liệu SharePoint từ phía clientMasterCode.vn
 
Bài 5: Quản lý dữ liệu SharePoint
Bài 5: Quản lý dữ liệu SharePointBài 5: Quản lý dữ liệu SharePoint
Bài 5: Quản lý dữ liệu SharePointMasterCode.vn
 
Bài 2: Web Part và các trang SharePoint
Bài 2: Web Part và các trang SharePointBài 2: Web Part và các trang SharePoint
Bài 2: Web Part và các trang SharePointMasterCode.vn
 
Bài 4: Thao tác với dữ liệu SharePoint thông qua ADO.NET Data Services và REST
Bài 4: Thao tác với dữ liệu SharePoint thông qua ADO.NET Data Services và RESTBài 4: Thao tác với dữ liệu SharePoint thông qua ADO.NET Data Services và REST
Bài 4: Thao tác với dữ liệu SharePoint thông qua ADO.NET Data Services và RESTMasterCode.vn
 
Bài 1: SharePoint 2010 và xây dựng giải pháp cho SharePoint 2010
Bài 1: SharePoint 2010 và xây dựng giải pháp cho SharePoint 2010Bài 1: SharePoint 2010 và xây dựng giải pháp cho SharePoint 2010
Bài 1: SharePoint 2010 và xây dựng giải pháp cho SharePoint 2010MasterCode.vn
 
Bài 7: Luồng công việc – Workflow
Bài 7: Luồng công việc – WorkflowBài 7: Luồng công việc – Workflow
Bài 7: Luồng công việc – WorkflowMasterCode.vn
 

Viewers also liked (10)

10 Reasons your SharePoint Migration Failed
10 Reasons your SharePoint Migration Failed10 Reasons your SharePoint Migration Failed
10 Reasons your SharePoint Migration Failed
 
SharePoint Saturday Stockholm 2015 - SharePoint Online Friend or Foe
SharePoint Saturday Stockholm 2015 - SharePoint Online Friend or FoeSharePoint Saturday Stockholm 2015 - SharePoint Online Friend or Foe
SharePoint Saturday Stockholm 2015 - SharePoint Online Friend or Foe
 
Planning Your Migration to SharePoint Online #SPBiz60
Planning Your Migration to SharePoint Online #SPBiz60Planning Your Migration to SharePoint Online #SPBiz60
Planning Your Migration to SharePoint Online #SPBiz60
 
Hệ thống thông tin quản lý - Bài 8 Phát triển hệ thống thông tin (phần 3)
Hệ thống thông tin quản lý - Bài 8 Phát triển hệ thống thông tin (phần 3)Hệ thống thông tin quản lý - Bài 8 Phát triển hệ thống thông tin (phần 3)
Hệ thống thông tin quản lý - Bài 8 Phát triển hệ thống thông tin (phần 3)
 
Bài 3: Thao tác với dữ liệu SharePoint từ phía client
Bài 3: Thao tác với dữ liệu SharePoint từ phía clientBài 3: Thao tác với dữ liệu SharePoint từ phía client
Bài 3: Thao tác với dữ liệu SharePoint từ phía client
 
Bài 5: Quản lý dữ liệu SharePoint
Bài 5: Quản lý dữ liệu SharePointBài 5: Quản lý dữ liệu SharePoint
Bài 5: Quản lý dữ liệu SharePoint
 
Bài 2: Web Part và các trang SharePoint
Bài 2: Web Part và các trang SharePointBài 2: Web Part và các trang SharePoint
Bài 2: Web Part và các trang SharePoint
 
Bài 4: Thao tác với dữ liệu SharePoint thông qua ADO.NET Data Services và REST
Bài 4: Thao tác với dữ liệu SharePoint thông qua ADO.NET Data Services và RESTBài 4: Thao tác với dữ liệu SharePoint thông qua ADO.NET Data Services và REST
Bài 4: Thao tác với dữ liệu SharePoint thông qua ADO.NET Data Services và REST
 
Bài 1: SharePoint 2010 và xây dựng giải pháp cho SharePoint 2010
Bài 1: SharePoint 2010 và xây dựng giải pháp cho SharePoint 2010Bài 1: SharePoint 2010 và xây dựng giải pháp cho SharePoint 2010
Bài 1: SharePoint 2010 và xây dựng giải pháp cho SharePoint 2010
 
Bài 7: Luồng công việc – Workflow
Bài 7: Luồng công việc – WorkflowBài 7: Luồng công việc – Workflow
Bài 7: Luồng công việc – Workflow
 

Similar to SharePoint Migration What do I expect ? (The issues and solutions)

Sps Boston The Share Point Beast
Sps Boston   The Share Point BeastSps Boston   The Share Point Beast
Sps Boston The Share Point Beastgueste918732
 
Top SharePoint Issues SPS Event New Hampshire 2014
Top SharePoint Issues SPS Event New Hampshire 2014Top SharePoint Issues SPS Event New Hampshire 2014
Top SharePoint Issues SPS Event New Hampshire 2014Serge Tremblay
 
Share point 2010_overview-day4-code
Share point 2010_overview-day4-codeShare point 2010_overview-day4-code
Share point 2010_overview-day4-codeNarayana Reddy
 
Share point 2010_overview-day4-code
Share point 2010_overview-day4-codeShare point 2010_overview-day4-code
Share point 2010_overview-day4-codeNarayana Reddy
 
SearchLove San Diego 2018 | Mat Clayton | Site Speed for Digital Marketers
SearchLove San Diego 2018 | Mat Clayton | Site Speed for Digital MarketersSearchLove San Diego 2018 | Mat Clayton | Site Speed for Digital Marketers
SearchLove San Diego 2018 | Mat Clayton | Site Speed for Digital MarketersDistilled
 
SharePoint Development For Asp Net Developers
SharePoint Development For Asp Net DevelopersSharePoint Development For Asp Net Developers
SharePoint Development For Asp Net DevelopersCorey Roth
 
High Performance Websites
High Performance WebsitesHigh Performance Websites
High Performance WebsitesParham
 
Better, Faster, Stronger! Boost Your Team-Based SharePoint Development Using ...
Better, Faster, Stronger! Boost Your Team-Based SharePoint Development Using ...Better, Faster, Stronger! Boost Your Team-Based SharePoint Development Using ...
Better, Faster, Stronger! Boost Your Team-Based SharePoint Development Using ...Richard Calderon
 
Mai Omar Desouki - SharePoint 2010 ITPRO
Mai Omar Desouki - SharePoint 2010 ITPROMai Omar Desouki - SharePoint 2010 ITPRO
Mai Omar Desouki - SharePoint 2010 ITPROMai Omar Desouki
 
SharePoint 2013 App Provisioning Models
SharePoint 2013 App Provisioning ModelsSharePoint 2013 App Provisioning Models
SharePoint 2013 App Provisioning ModelsShailen Sukul
 
Build Database Applications for SharePoint
Build Database Applications for SharePointBuild Database Applications for SharePoint
Build Database Applications for SharePointIron Speed
 
Build Database Applications for SharePoint!
Build Database Applications for SharePoint!Build Database Applications for SharePoint!
Build Database Applications for SharePoint!Iron Speed
 
( 2 ) Office 2007 Create A Portal
( 2 ) Office 2007   Create A Portal( 2 ) Office 2007   Create A Portal
( 2 ) Office 2007 Create A PortalLiquidHub
 
5 Mysterious SharePoint Errors and Their Resolution
5 Mysterious SharePoint Errors and Their Resolution5 Mysterious SharePoint Errors and Their Resolution
5 Mysterious SharePoint Errors and Their Resolutionharry marweik
 
Progressive Web Apps - Overview & Getting Started
Progressive Web Apps - Overview & Getting StartedProgressive Web Apps - Overview & Getting Started
Progressive Web Apps - Overview & Getting StartedGaurav Behere
 
SPSNYC SharePoint Worst Practices
SPSNYC SharePoint Worst PracticesSPSNYC SharePoint Worst Practices
SPSNYC SharePoint Worst PracticesScott Hoag
 
Progressive Web Apps by Millicent Convento
Progressive Web Apps by Millicent ConventoProgressive Web Apps by Millicent Convento
Progressive Web Apps by Millicent ConventoDEVCON
 
Bringing Zest to SharePoint Sites Using Out-of-the-Box Technology
Bringing Zest to SharePoint Sites Using Out-of-the-Box TechnologyBringing Zest to SharePoint Sites Using Out-of-the-Box Technology
Bringing Zest to SharePoint Sites Using Out-of-the-Box Technologyjoelsef
 
腾讯大讲堂09 如何建设高性能网站
腾讯大讲堂09 如何建设高性能网站腾讯大讲堂09 如何建设高性能网站
腾讯大讲堂09 如何建设高性能网站George Ang
 
Essential Knowledge for SharePoint Add-Ins
Essential Knowledge for SharePoint Add-InsEssential Knowledge for SharePoint Add-Ins
Essential Knowledge for SharePoint Add-InsInnoTech
 

Similar to SharePoint Migration What do I expect ? (The issues and solutions) (20)

Sps Boston The Share Point Beast
Sps Boston   The Share Point BeastSps Boston   The Share Point Beast
Sps Boston The Share Point Beast
 
Top SharePoint Issues SPS Event New Hampshire 2014
Top SharePoint Issues SPS Event New Hampshire 2014Top SharePoint Issues SPS Event New Hampshire 2014
Top SharePoint Issues SPS Event New Hampshire 2014
 
Share point 2010_overview-day4-code
Share point 2010_overview-day4-codeShare point 2010_overview-day4-code
Share point 2010_overview-day4-code
 
Share point 2010_overview-day4-code
Share point 2010_overview-day4-codeShare point 2010_overview-day4-code
Share point 2010_overview-day4-code
 
SearchLove San Diego 2018 | Mat Clayton | Site Speed for Digital Marketers
SearchLove San Diego 2018 | Mat Clayton | Site Speed for Digital MarketersSearchLove San Diego 2018 | Mat Clayton | Site Speed for Digital Marketers
SearchLove San Diego 2018 | Mat Clayton | Site Speed for Digital Marketers
 
SharePoint Development For Asp Net Developers
SharePoint Development For Asp Net DevelopersSharePoint Development For Asp Net Developers
SharePoint Development For Asp Net Developers
 
High Performance Websites
High Performance WebsitesHigh Performance Websites
High Performance Websites
 
Better, Faster, Stronger! Boost Your Team-Based SharePoint Development Using ...
Better, Faster, Stronger! Boost Your Team-Based SharePoint Development Using ...Better, Faster, Stronger! Boost Your Team-Based SharePoint Development Using ...
Better, Faster, Stronger! Boost Your Team-Based SharePoint Development Using ...
 
Mai Omar Desouki - SharePoint 2010 ITPRO
Mai Omar Desouki - SharePoint 2010 ITPROMai Omar Desouki - SharePoint 2010 ITPRO
Mai Omar Desouki - SharePoint 2010 ITPRO
 
SharePoint 2013 App Provisioning Models
SharePoint 2013 App Provisioning ModelsSharePoint 2013 App Provisioning Models
SharePoint 2013 App Provisioning Models
 
Build Database Applications for SharePoint
Build Database Applications for SharePointBuild Database Applications for SharePoint
Build Database Applications for SharePoint
 
Build Database Applications for SharePoint!
Build Database Applications for SharePoint!Build Database Applications for SharePoint!
Build Database Applications for SharePoint!
 
( 2 ) Office 2007 Create A Portal
( 2 ) Office 2007   Create A Portal( 2 ) Office 2007   Create A Portal
( 2 ) Office 2007 Create A Portal
 
5 Mysterious SharePoint Errors and Their Resolution
5 Mysterious SharePoint Errors and Their Resolution5 Mysterious SharePoint Errors and Their Resolution
5 Mysterious SharePoint Errors and Their Resolution
 
Progressive Web Apps - Overview & Getting Started
Progressive Web Apps - Overview & Getting StartedProgressive Web Apps - Overview & Getting Started
Progressive Web Apps - Overview & Getting Started
 
SPSNYC SharePoint Worst Practices
SPSNYC SharePoint Worst PracticesSPSNYC SharePoint Worst Practices
SPSNYC SharePoint Worst Practices
 
Progressive Web Apps by Millicent Convento
Progressive Web Apps by Millicent ConventoProgressive Web Apps by Millicent Convento
Progressive Web Apps by Millicent Convento
 
Bringing Zest to SharePoint Sites Using Out-of-the-Box Technology
Bringing Zest to SharePoint Sites Using Out-of-the-Box TechnologyBringing Zest to SharePoint Sites Using Out-of-the-Box Technology
Bringing Zest to SharePoint Sites Using Out-of-the-Box Technology
 
腾讯大讲堂09 如何建设高性能网站
腾讯大讲堂09 如何建设高性能网站腾讯大讲堂09 如何建设高性能网站
腾讯大讲堂09 如何建设高性能网站
 
Essential Knowledge for SharePoint Add-Ins
Essential Knowledge for SharePoint Add-InsEssential Knowledge for SharePoint Add-Ins
Essential Knowledge for SharePoint Add-Ins
 

More from K.Mohamed Faizal

So you want to be a pre sales architect or consultant
So you want to be a pre sales architect or consultantSo you want to be a pre sales architect or consultant
So you want to be a pre sales architect or consultantK.Mohamed Faizal
 
Building infrastructure with Azure Resource Manager using PowerShell
Building infrastructure with Azure Resource Manager using PowerShell Building infrastructure with Azure Resource Manager using PowerShell
Building infrastructure with Azure Resource Manager using PowerShell K.Mohamed Faizal
 
Implementing SharePoint on Azure, Lessons Learnt from a Real World Project
Implementing SharePoint on Azure, Lessons Learnt from a Real World ProjectImplementing SharePoint on Azure, Lessons Learnt from a Real World Project
Implementing SharePoint on Azure, Lessons Learnt from a Real World ProjectK.Mohamed Faizal
 
Connect your datacenter to Microsoft Azure
Connect your datacenter to Microsoft AzureConnect your datacenter to Microsoft Azure
Connect your datacenter to Microsoft AzureK.Mohamed Faizal
 
SharePoint on Microsoft Azure
SharePoint on Microsoft AzureSharePoint on Microsoft Azure
SharePoint on Microsoft AzureK.Mohamed Faizal
 
Deep Dive into SharePoint Topologies and Server Architecture for SharePoint 2013
Deep Dive into SharePoint Topologies and Server Architecture for SharePoint 2013Deep Dive into SharePoint Topologies and Server Architecture for SharePoint 2013
Deep Dive into SharePoint Topologies and Server Architecture for SharePoint 2013K.Mohamed Faizal
 
Share point 2013 the way to go...
Share point 2013 the way to go...Share point 2013 the way to go...
Share point 2013 the way to go...K.Mohamed Faizal
 
SharePoint 2013 Sneak Peek
SharePoint 2013 Sneak PeekSharePoint 2013 Sneak Peek
SharePoint 2013 Sneak PeekK.Mohamed Faizal
 
Build and Deploy LightSwitch Application on Windows Azure
Build and Deploy LightSwitch Application on Windows AzureBuild and Deploy LightSwitch Application on Windows Azure
Build and Deploy LightSwitch Application on Windows AzureK.Mohamed Faizal
 
Windows azure traffic manager
Windows azure traffic managerWindows azure traffic manager
Windows azure traffic managerK.Mohamed Faizal
 
Must have tools for windows azure
Must have tools for windows azureMust have tools for windows azure
Must have tools for windows azureK.Mohamed Faizal
 
Exploring Windows Azure Cloud Storage
Exploring Windows Azure Cloud StorageExploring Windows Azure Cloud Storage
Exploring Windows Azure Cloud StorageK.Mohamed Faizal
 
Building & Managing Windows Azure
Building & Managing Windows AzureBuilding & Managing Windows Azure
Building & Managing Windows AzureK.Mohamed Faizal
 
Using Social Computing on Corporate world
Using Social Computing on Corporate world Using Social Computing on Corporate world
Using Social Computing on Corporate world K.Mohamed Faizal
 
SharePoint 2010 List of List Improvements
SharePoint 2010 List of List ImprovementsSharePoint 2010 List of List Improvements
SharePoint 2010 List of List ImprovementsK.Mohamed Faizal
 
Install SharePoint 2010 on Windows 7 VHD Boot
Install SharePoint 2010 on Windows 7 VHD Boot Install SharePoint 2010 on Windows 7 VHD Boot
Install SharePoint 2010 on Windows 7 VHD Boot K.Mohamed Faizal
 

More from K.Mohamed Faizal (20)

So you want to be a pre sales architect or consultant
So you want to be a pre sales architect or consultantSo you want to be a pre sales architect or consultant
So you want to be a pre sales architect or consultant
 
Building infrastructure with Azure Resource Manager using PowerShell
Building infrastructure with Azure Resource Manager using PowerShell Building infrastructure with Azure Resource Manager using PowerShell
Building infrastructure with Azure Resource Manager using PowerShell
 
Implementing SharePoint on Azure, Lessons Learnt from a Real World Project
Implementing SharePoint on Azure, Lessons Learnt from a Real World ProjectImplementing SharePoint on Azure, Lessons Learnt from a Real World Project
Implementing SharePoint on Azure, Lessons Learnt from a Real World Project
 
Internet of things
Internet of thingsInternet of things
Internet of things
 
Connect your datacenter to Microsoft Azure
Connect your datacenter to Microsoft AzureConnect your datacenter to Microsoft Azure
Connect your datacenter to Microsoft Azure
 
SharePoint on Microsoft Azure
SharePoint on Microsoft AzureSharePoint on Microsoft Azure
SharePoint on Microsoft Azure
 
Deep Dive into SharePoint Topologies and Server Architecture for SharePoint 2013
Deep Dive into SharePoint Topologies and Server Architecture for SharePoint 2013Deep Dive into SharePoint Topologies and Server Architecture for SharePoint 2013
Deep Dive into SharePoint Topologies and Server Architecture for SharePoint 2013
 
Windows Azure Website
Windows Azure WebsiteWindows Azure Website
Windows Azure Website
 
Share point 2013 the way to go...
Share point 2013 the way to go...Share point 2013 the way to go...
Share point 2013 the way to go...
 
SharePoint 2013 Sneak Peek
SharePoint 2013 Sneak PeekSharePoint 2013 Sneak Peek
SharePoint 2013 Sneak Peek
 
Share point 2013 cop v4
Share point 2013 cop v4Share point 2013 cop v4
Share point 2013 cop v4
 
Build and Deploy LightSwitch Application on Windows Azure
Build and Deploy LightSwitch Application on Windows AzureBuild and Deploy LightSwitch Application on Windows Azure
Build and Deploy LightSwitch Application on Windows Azure
 
Windows azure traffic manager
Windows azure traffic managerWindows azure traffic manager
Windows azure traffic manager
 
Must have tools for windows azure
Must have tools for windows azureMust have tools for windows azure
Must have tools for windows azure
 
Exploring Windows Azure Cloud Storage
Exploring Windows Azure Cloud StorageExploring Windows Azure Cloud Storage
Exploring Windows Azure Cloud Storage
 
Building & Managing Windows Azure
Building & Managing Windows AzureBuilding & Managing Windows Azure
Building & Managing Windows Azure
 
Word automation services
Word automation servicesWord automation services
Word automation services
 
Using Social Computing on Corporate world
Using Social Computing on Corporate world Using Social Computing on Corporate world
Using Social Computing on Corporate world
 
SharePoint 2010 List of List Improvements
SharePoint 2010 List of List ImprovementsSharePoint 2010 List of List Improvements
SharePoint 2010 List of List Improvements
 
Install SharePoint 2010 on Windows 7 VHD Boot
Install SharePoint 2010 on Windows 7 VHD Boot Install SharePoint 2010 on Windows 7 VHD Boot
Install SharePoint 2010 on Windows 7 VHD Boot
 

Recently uploaded

AI Fame Rush Review – Virtual Influencer Creation In Just Minutes
AI Fame Rush Review – Virtual Influencer Creation In Just MinutesAI Fame Rush Review – Virtual Influencer Creation In Just Minutes
AI Fame Rush Review – Virtual Influencer Creation In Just MinutesMd Hossain Ali
 
IESVE Software for Florida Code Compliance Using ASHRAE 90.1-2019
IESVE Software for Florida Code Compliance Using ASHRAE 90.1-2019IESVE Software for Florida Code Compliance Using ASHRAE 90.1-2019
IESVE Software for Florida Code Compliance Using ASHRAE 90.1-2019IES VE
 
9 Steps For Building Winning Founding Team
9 Steps For Building Winning Founding Team9 Steps For Building Winning Founding Team
9 Steps For Building Winning Founding TeamAdam Moalla
 
Bird eye's view on Camunda open source ecosystem
Bird eye's view on Camunda open source ecosystemBird eye's view on Camunda open source ecosystem
Bird eye's view on Camunda open source ecosystemAsko Soukka
 
How Accurate are Carbon Emissions Projections?
How Accurate are Carbon Emissions Projections?How Accurate are Carbon Emissions Projections?
How Accurate are Carbon Emissions Projections?IES VE
 
99.99% of Your Traces Are (Probably) Trash (SRECon NA 2024).pdf
99.99% of Your Traces  Are (Probably) Trash (SRECon NA 2024).pdf99.99% of Your Traces  Are (Probably) Trash (SRECon NA 2024).pdf
99.99% of Your Traces Are (Probably) Trash (SRECon NA 2024).pdfPaige Cruz
 
Empowering Africa's Next Generation: The AI Leadership Blueprint
Empowering Africa's Next Generation: The AI Leadership BlueprintEmpowering Africa's Next Generation: The AI Leadership Blueprint
Empowering Africa's Next Generation: The AI Leadership BlueprintMahmoud Rabie
 
All in AI: LLM Landscape & RAG in 2024 with Mark Ryan (Google) & Jerry Liu (L...
All in AI: LLM Landscape & RAG in 2024 with Mark Ryan (Google) & Jerry Liu (L...All in AI: LLM Landscape & RAG in 2024 with Mark Ryan (Google) & Jerry Liu (L...
All in AI: LLM Landscape & RAG in 2024 with Mark Ryan (Google) & Jerry Liu (L...Daniel Zivkovic
 
Nanopower In Semiconductor Industry.pdf
Nanopower  In Semiconductor Industry.pdfNanopower  In Semiconductor Industry.pdf
Nanopower In Semiconductor Industry.pdfPedro Manuel
 
Comparing Sidecar-less Service Mesh from Cilium and Istio
Comparing Sidecar-less Service Mesh from Cilium and IstioComparing Sidecar-less Service Mesh from Cilium and Istio
Comparing Sidecar-less Service Mesh from Cilium and IstioChristian Posta
 
UiPath Studio Web workshop series - Day 6
UiPath Studio Web workshop series - Day 6UiPath Studio Web workshop series - Day 6
UiPath Studio Web workshop series - Day 6DianaGray10
 
Apres-Cyber - The Data Dilemma: Bridging Offensive Operations and Machine Lea...
Apres-Cyber - The Data Dilemma: Bridging Offensive Operations and Machine Lea...Apres-Cyber - The Data Dilemma: Bridging Offensive Operations and Machine Lea...
Apres-Cyber - The Data Dilemma: Bridging Offensive Operations and Machine Lea...Will Schroeder
 
activity_diagram_combine_v4_20190827.pdfactivity_diagram_combine_v4_20190827.pdf
activity_diagram_combine_v4_20190827.pdfactivity_diagram_combine_v4_20190827.pdfactivity_diagram_combine_v4_20190827.pdfactivity_diagram_combine_v4_20190827.pdf
activity_diagram_combine_v4_20190827.pdfactivity_diagram_combine_v4_20190827.pdfJamie (Taka) Wang
 
The Kubernetes Gateway API and its role in Cloud Native API Management
The Kubernetes Gateway API and its role in Cloud Native API ManagementThe Kubernetes Gateway API and its role in Cloud Native API Management
The Kubernetes Gateway API and its role in Cloud Native API ManagementNuwan Dias
 
The Data Metaverse: Unpacking the Roles, Use Cases, and Tech Trends in Data a...
The Data Metaverse: Unpacking the Roles, Use Cases, and Tech Trends in Data a...The Data Metaverse: Unpacking the Roles, Use Cases, and Tech Trends in Data a...
The Data Metaverse: Unpacking the Roles, Use Cases, and Tech Trends in Data a...Aggregage
 
Introduction to Matsuo Laboratory (ENG).pptx
Introduction to Matsuo Laboratory (ENG).pptxIntroduction to Matsuo Laboratory (ENG).pptx
Introduction to Matsuo Laboratory (ENG).pptxMatsuo Lab
 
20230202 - Introduction to tis-py
20230202 - Introduction to tis-py20230202 - Introduction to tis-py
20230202 - Introduction to tis-pyJamie (Taka) Wang
 
COMPUTER 10 Lesson 8 - Building a Website
COMPUTER 10 Lesson 8 - Building a WebsiteCOMPUTER 10 Lesson 8 - Building a Website
COMPUTER 10 Lesson 8 - Building a Websitedgelyza
 

Recently uploaded (20)

AI Fame Rush Review – Virtual Influencer Creation In Just Minutes
AI Fame Rush Review – Virtual Influencer Creation In Just MinutesAI Fame Rush Review – Virtual Influencer Creation In Just Minutes
AI Fame Rush Review – Virtual Influencer Creation In Just Minutes
 
IESVE Software for Florida Code Compliance Using ASHRAE 90.1-2019
IESVE Software for Florida Code Compliance Using ASHRAE 90.1-2019IESVE Software for Florida Code Compliance Using ASHRAE 90.1-2019
IESVE Software for Florida Code Compliance Using ASHRAE 90.1-2019
 
9 Steps For Building Winning Founding Team
9 Steps For Building Winning Founding Team9 Steps For Building Winning Founding Team
9 Steps For Building Winning Founding Team
 
Bird eye's view on Camunda open source ecosystem
Bird eye's view on Camunda open source ecosystemBird eye's view on Camunda open source ecosystem
Bird eye's view on Camunda open source ecosystem
 
201610817 - edge part1
201610817 - edge part1201610817 - edge part1
201610817 - edge part1
 
How Accurate are Carbon Emissions Projections?
How Accurate are Carbon Emissions Projections?How Accurate are Carbon Emissions Projections?
How Accurate are Carbon Emissions Projections?
 
99.99% of Your Traces Are (Probably) Trash (SRECon NA 2024).pdf
99.99% of Your Traces  Are (Probably) Trash (SRECon NA 2024).pdf99.99% of Your Traces  Are (Probably) Trash (SRECon NA 2024).pdf
99.99% of Your Traces Are (Probably) Trash (SRECon NA 2024).pdf
 
Empowering Africa's Next Generation: The AI Leadership Blueprint
Empowering Africa's Next Generation: The AI Leadership BlueprintEmpowering Africa's Next Generation: The AI Leadership Blueprint
Empowering Africa's Next Generation: The AI Leadership Blueprint
 
All in AI: LLM Landscape & RAG in 2024 with Mark Ryan (Google) & Jerry Liu (L...
All in AI: LLM Landscape & RAG in 2024 with Mark Ryan (Google) & Jerry Liu (L...All in AI: LLM Landscape & RAG in 2024 with Mark Ryan (Google) & Jerry Liu (L...
All in AI: LLM Landscape & RAG in 2024 with Mark Ryan (Google) & Jerry Liu (L...
 
Nanopower In Semiconductor Industry.pdf
Nanopower  In Semiconductor Industry.pdfNanopower  In Semiconductor Industry.pdf
Nanopower In Semiconductor Industry.pdf
 
Comparing Sidecar-less Service Mesh from Cilium and Istio
Comparing Sidecar-less Service Mesh from Cilium and IstioComparing Sidecar-less Service Mesh from Cilium and Istio
Comparing Sidecar-less Service Mesh from Cilium and Istio
 
UiPath Studio Web workshop series - Day 6
UiPath Studio Web workshop series - Day 6UiPath Studio Web workshop series - Day 6
UiPath Studio Web workshop series - Day 6
 
Apres-Cyber - The Data Dilemma: Bridging Offensive Operations and Machine Lea...
Apres-Cyber - The Data Dilemma: Bridging Offensive Operations and Machine Lea...Apres-Cyber - The Data Dilemma: Bridging Offensive Operations and Machine Lea...
Apres-Cyber - The Data Dilemma: Bridging Offensive Operations and Machine Lea...
 
activity_diagram_combine_v4_20190827.pdfactivity_diagram_combine_v4_20190827.pdf
activity_diagram_combine_v4_20190827.pdfactivity_diagram_combine_v4_20190827.pdfactivity_diagram_combine_v4_20190827.pdfactivity_diagram_combine_v4_20190827.pdf
activity_diagram_combine_v4_20190827.pdfactivity_diagram_combine_v4_20190827.pdf
 
20230104 - machine vision
20230104 - machine vision20230104 - machine vision
20230104 - machine vision
 
The Kubernetes Gateway API and its role in Cloud Native API Management
The Kubernetes Gateway API and its role in Cloud Native API ManagementThe Kubernetes Gateway API and its role in Cloud Native API Management
The Kubernetes Gateway API and its role in Cloud Native API Management
 
The Data Metaverse: Unpacking the Roles, Use Cases, and Tech Trends in Data a...
The Data Metaverse: Unpacking the Roles, Use Cases, and Tech Trends in Data a...The Data Metaverse: Unpacking the Roles, Use Cases, and Tech Trends in Data a...
The Data Metaverse: Unpacking the Roles, Use Cases, and Tech Trends in Data a...
 
Introduction to Matsuo Laboratory (ENG).pptx
Introduction to Matsuo Laboratory (ENG).pptxIntroduction to Matsuo Laboratory (ENG).pptx
Introduction to Matsuo Laboratory (ENG).pptx
 
20230202 - Introduction to tis-py
20230202 - Introduction to tis-py20230202 - Introduction to tis-py
20230202 - Introduction to tis-py
 
COMPUTER 10 Lesson 8 - Building a Website
COMPUTER 10 Lesson 8 - Building a WebsiteCOMPUTER 10 Lesson 8 - Building a Website
COMPUTER 10 Lesson 8 - Building a Website
 

SharePoint Migration What do I expect ? (The issues and solutions)

  • 1. SharePoint Migration What do I expect ? THE ISSUES AND SOLUTIONS By K.Mohamed Faizal , www.zquad.in / @kmdfaizal @ SharePoint CoP on 31st Jan 2013
  • 2. Migration There are tons of resources on the Internet today that tell you how to migrate your SharePoint 2007 environment to SharePoint 2010. Sometimes, achieving something becomes difficult due to of lack of information, This presentation will help you in achieving your migration goal. You may probably have seen these articles or links that talk about ◦ Top 5 SharePoint Migration Pitfalls ◦ Database attach or Backup-SPSite / Restore-SPSite ◦ Understand the SharePoint Migration Schedule ◦ Understand Your SharePoint Customizations Before Migrating In this presentation, I am going to cover the issue that you may discover during your migration or after migration. ?
  • 3. Solution : http://www.zquad.in/2010/07/sharep oint-2010-blank-page-display-401.html 1 Blank Page display NO ERROR message displayed it display just Blank White Page <httpErrors errorMode="Custom" existingResponse="Auto" >
  • 4. Solution : http://www.zquad.in/2010/07/sharep oint-2010-blank-page-display-401.html 1 Blank Page display • Click Start, click Run, type regedit, and then click OK. • In Registry Editor, locate and then click the following registry key: HKEY_LOCAL_MACHINESYSTEMCurrentControlSetControlLs aMSV1_0 • Right-click MSV1_0, point to New, and then click Multi-String Value. • Type BackConnectionHostNames, and then press ENTER. • Right-click BackConnectionHostNames, and then click Modify. • In the Value data box, type the host name or the host names for the sites that are on the local computer, and then click OK. • Quit Registry Editor, and then restart the IISAdmin service.
  • 5. http://claytoncobb.wordpress.com/2011/01 /07/sharepoint-2010-how-to-open-files- 2 Open PDF files in browser that-prompt-for-save-or-cancel/
  • 6. http://claytoncobb.wordpress.com/2011/01 /07/sharepoint-2010-how-to-open-files- 2 Open PDF files in browser that-prompt-for-save-or-cancel/ Central Admin > Application Management > Manage Web Applications Single-click the row of your web application Click General Settings in the ribbon Scroll down to Browser File Handling and select Permissive
  • 7. http://www.pdfshareforms.com/s harepoint-2010-and-pdf- 2 Open PDF files in browser integration-series-part-1/ Once you enabled “Permissive” Browser File Handling, SharePoint will allow all documents be opened in the browser. Today, there is no “out-of-the-box” option to allow Permissive option for PDF documents only How to overcome this ?
  • 8. 3 Subscribed alerts will not work Description Old URL New URL Intranet http://intranet.sharepoint.com http://inet.sharepoint.com Issue due to Solution Source The host name changed. http://technet.microsoft.com/en- The port that the Web application uses changed. us/library/cc508847.aspx#section2 The name of the server changed. http://www.sharepointdiary.com/201 1/10/fix-alerts-in-sharepoint- Invoke-AlertFixup -site http://inet.sharepoint.com -oldurl migration.html http://intranet.sharepoint.com
  • 9. 4 Site collection is locked Monday morning, the calls started for some reason, Long-time users were unable to edit list items? I figured this may permissions issue ? so I popped in to look at the Site Settings and found that everything alright A quick trip to Central Administration showed that I was still listed as a Site Collection Administrator
  • 10. 4 Site collection is locked Resolution : If the site collection keeps going to read only mode, we must Application Management->SharePoint check whether site collection is locked, if it is locked then we Site Management->Site collection must see whether the backup is running during that time, by quotas and locks. default if you run the backup via stsadm or powershell. The site collection will get locked automatically and go read only mode and after finish the backup will automatically revert to normal. Note that sometime the third party backup software run during that time. Fire up stsadm and issue the following command: stsadm -o setsitelock -url http://myportalsitecollection -lock none
  • 11. 5 People picker One-way trust between our SharePoint domain (A) and domain (B). We would like to have users from the external domain be able to access our SharePoint portal. We also want to be able to search for those external users in the people picker. Returning no results when searching for users by name, or browsing all users
  • 12. 5 People picker stsadm -o setapppassword -password password (Needs to be executed at every server in the farm for one time.) stsadm -o setproperty -pn peoplepicker-searchadforests -pv "domain:domaintosearch.com,username,password" -url http://centraladminurl Stsadm –o setproperty –pn peoplepicker-setadsearchforests –pv "domain:domaintosearch.com,username,password" -url http://centraladminurl
  • 13. 6 Search Results One-way trust between our SharePoint domain (A) and domain (B). You install and configure a beautiful, fresh, and pristine SharePoint environment Test search by performing a full crawl. Results are returned. All’s good. Right? Now, User (DomainBUser1) has access to content crawled on DomainA. DomainBUser1 is returned zero results when he or she issues a search query on DomainA.
  • 14. 6 No Search Results This scenario occurs if you have a one-way trust established and are performing a search with a user from the trusted domain. In order to rectify this situation, you’ll have to configure your Search Service Application to store ACLs in Claims format. To do this, you’ll have to use PowerShell Source: $searchapp = Get-SPEnterpriseSearchServiceApplication http://support.microsoft.com/k $searchapp.SetProperty("ForceClaimACLs",1) b/2344518 Security trimming is done in the query processor(QP). In SharePoint 2010, the QP has moved from the WFE to the query servers. Since the WFE only sends the user’s SID to the QP, AuthZ API fails to authenticate across domains. In SharePoint 2007, security trimming was done in the WFE. The AuthZ API worked as the querying user’s group information was available.
  • 15. 7 Absolute links to relative URLs Common concerns during SharePoint upgrades are hard-coded or broken links By default, the list or the document library link has been added to the Quick Launch on the left hand side of your site That kind of link upgrades with no issues since it is a relative link that SharePoint knows about and knows how to call and reference. When users, such as site owners, manipulate the Quick Launch navigation and add additional links, they manually type in the address and description, so that it is easier for their end users to access the link content, that link is what gets broken after an upgrade. Solution Source : http://sharepointquester.com/201 2/10/30/updating-sharepoint- absolute-urls-with-relative-urls- using-windows-powershell/
  • 16. Fixing Missing Web Part & Feature 8 issues re-upgrade check is telling you that some web parts are being referenced but they are installed on the server. It should look something like this The following web part(s) are referenced by the content, but they are not installed on the web server Id = GUID, Type = Unknown, Reference = 2, Status = Missing stsadm.exe -o enumallwebs -includewebparts > N:enumwebs.txt
  • 17. Fixing Missing Web Part & Feature 8 issues The following feature(s) are referenced by the content, but they are not installed on the web server Name = Unknown, Feature id = GUID, Reference count = 43, Scope = Web, Status = Missing Source : http://sharepointrepor ter.wordpress.com/ CodePlex : http://featureadmin.co deplex.com/
  • 18. User Migration from Domain A to 9 Domain B Make sure that you full control permission for the login user for the User profile service application (UPS). And also ensure that you login using service account. When you click on a user in a SharePoint list item with the column type is Person or Group Name (With Presence), you may get a page cannot be displayed error.
  • 19. 9 User Migration from Domain A to Domain B
  • 20. 10 Missing Event Receivers During SharePoint 2010 Migration, Preupgradecheck reported the issue of missing Event Receivers: stsadm -o enumallwebs -includeeventreceivers > EventReceivers.txt Un-Register the Event Receivers: Download http://speventreceiverman.codeplex.com/ Source : http://www.sharepointdiary.c om/2011/08/fix-missing- event-receivers-issue-in.html
  • 21. SharePoint By K.Mohamed Faizal , Lead Consultant, Chief Architect Office NCS (P) Ltd, Singapore www.zquad.in / @kmdfaizal