How to migrate sharepoint 2010 onpremise to sharepoint online?

Hi,
  I've seen many forums to migrate sharepoint 2010 to office 365. Everywhere they're pointing to use some third party tools. Actually, I am having the requirement that I've around 100-120 site collections and 1TB content database and many workflows
and 20-30 custom solutions etc. I want to migrate the entire solution to office 365. Can you please guide me how to implement this.
Balaji -Please click mark as answer if my reply solves your problem.

Use 3rd party tools! And your custom solutions will have to become either sandbox solutions (deprecated) or SharePoint Apps.
I would talk to a Microsoft Partner about this, as this is a complex undertaking.
Trevor Seward, MCC
Follow or contact me at...
&nbsp&nbsp
This post is my own opinion and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

Similar Messages

  • How to migrate sharepoint 2010 infopath form to sharepoint online.

    how to migrate SharePoint 2010 infopath form to SharePoint online.

    Hi Partha,
    You use powershell script to migrate infopath forms from SP 2010 to SP Online. But you need to be careful about external connections used in infopath forms(web service connections etc.) because they might required to be changed. So, for data connections,
    use of Data Connection Library is a preferable way or you can write a powershell script to update the data connections also.
    You can find the sample script from the below url:
    https://drive.google.com/file/d/0B_mYrpgMRd3IbHdpZkNBLVNhd1k/view?usp=sharing
    Best Regards,
    Brij K

  • How to get sharepoint online (office 365) data in cloud/windows azure (provider) hosted app using Javascript?

    How to get sharepoint online (office 365) data in cloud/windows azure (provider) hosted app using Javascript?
    I wish to retrieve sharepoint online data in html page (hosted in windows azure) using javascript and then need to play with AngularJS

    Hi,
    According to your description, you might want to get data from Office 365 SharePoint Online(also known as host web) and pass to the Provider Hosted App which is hosted
    in Windows Azure site.
    I would suggest you take a look at the links below about accessing data from the host web
     for a quick start:
    https://msdn.microsoft.com/en-us/library/office/fp179927(v=office.15).aspx#SP15Accessdatafromremoteapp_Codeexample
    http://dannyjessee.com/blog/index.php/2014/07/accessing-sharepoint-data-from-provider-hosted-apps-use-the-right-context/
    Aother sample solution for your reference:
    https://code.msdn.microsoft.com/SharePoint-2013-Get-the-0ec36bb6
    Best regards
    Patrick Liang
    TechNet Community Support

  • How to Migrate SharePoint 2010 On Premisis to O365?

    Hello Team,
    Can someone please provide me some documents on how to move SharePoint on premise to O365 ? I am not able to find a good Microsoft Document or article.
    Regards,
    Binu Kumar - MCP, MCITP, MCTS , MBA - IT , Director Aarbin Technology Pvt Ltd - Please remember to mark the replies as answers if they help and unmark them if they provide no help.

    Hi Binu,
    The easiest way to go is probably a third party tool, you can consider these tools:
    3 PRO - SharePoint Migrator :
    https://shop.step2own.com/3-pro-sharepoint-migrator
    Sharegate:
    http://en.share-gate.com/office-365-migration
    For more information, you can refer to the blog:
    http://techmikael.blogspot.com/2013/10/migrating-content-from-sharepoint-2010.html
    Reference:
    http://sharepoint.stackexchange.com/questions/61700/how-can-we-copy-data-from-sharepoint-2010-to-sharepoint-online-2013
    Best Regards,
    Eric
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How to migrate SharePoint 2013 Content and Configuration DataBases to a new SQL Server and DataBases in it?

    Hi,
    We need to migrate Our current 1 clustered SQL Server, Many Configurations DataBases and Many Content DataBases to a brand new clustered SQL server and brand new databases in it.
    How can I do this?
    Can someone list the steps involved?
    Thanks.  

    Hi,
    According to your description, you want to move Content databases  and Configuration databases to a new SQL Server,  refer to this article:
    https://technet.microsoft.com/en-us/library/cc512725.aspx?f=255&MSPPError=-2147217396
    Besides, here is a similar post, you can use as a reference:
    https://social.technet.microsoft.com/Forums/office/en-US/2cd46f7a-d583-41b2-82c2-ddc6d7c43fb8/how-to-move-sharepoint-databases-to-new-sql-server?forum=sharepointadminprevious
    Best Regards,
    Lisa Chen
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • How to export SharePoint Online sites in an offline format that can be accessed without SharePoint?

    Details:
    Non-techie needs to archive SharePoint site and apps content into one convenient file. 
    1. Currently SharePoint calenders, contacts and tasks synced to Outlook and exported to an Outlook .pst; 
    2. Document libraries to a folder in file system; 
    3. SharePoint Online 2013 microfeed cannot sync at all (correct me if I'm wrong). 
    4. Pages also not really exportable.
    Migration between O365 plans and tenants I can use .wsp but still limited to 50MB export and needs site collection settings access.
    Ideally able to access these content offline (no security implications here).
    Anyone know of a simple way?

    Hi Tian-An,
    SharePoint contents (e.g. document files, list items, pages) are stored in SQL database, it may if you want to use the contents without SharePoint environment, I think you can click "Open with Exporer" from library ribbon and then copy them to
    the file system(e.g. a network dirve fileshare), note that the library columns value would be unable to be copied/exported; for the list items you can click "Export to Excel" button form list ribbon to export list itmes to
    excel file, or as you have done with connecting to Outlook.
    And we have a dedicated Office365 SharePoint online forum, I would recommand you post there for getting a better assistance redarding this SharePoint online contents exporting.
    https://community.office365.com/en-us/f/154.aspx
    Thanks,
    Daniel Yang
    Forum Support
    Please remember to mark the replies as answers if they help and unmark them if they provide no help. If you have feedback for TechNet Subscriber Support, contact [email protected]
    Daniel Yang
    TechNet Community Support

  • How to connect sharepoint online using client object model and authentictae against window login

    Iam developing A console application where in need to connect to sharepoint online and authenticate against window login can u please suggest me the code

    Hi,
    There is couple of helper method to check and validate the SPO credentials in the same solution.
    string userName = GetUserName();
    SecureString pwd = GetPassword();
    /* End Program if no Credentials */
    if (string.IsNullOrEmpty(userName) || (pwd == null))
    return;
    // Open connection to Office365 tenant
    ClientContext cc = new ClientContext(siteUrl);
    cc.AuthenticationMode = ClientAuthenticationMode.Default;
    cc.Credentials = new SharePointOnlineCredentials(userName, pwd);
    if you give incorrect user name or password it will throws an exception in the console.
    Murugesa Pandian.,SharePoint 2010 MCPD | MCTS|Configure

  • How to use sharepoint online lists in different subsites as a datasource to powerpivot

    My customer has sharepoint online + project online.
    As you might know each project has a site, and in each site there are lists with the same name on each site.
    We need a pivot table where we can aggregate all that list data, is this possible? Do I need powerbi, or can I do it without power bi?
    Can u guide me in the right direction?
    Follow me on Twitter
    levalencia Blog

    I opened a ticket with MS support on this.  They concluded that there is no means of scheduling an auto-refresh when you are aggregating more than one SharePoint list as your data source.  They recommended buying a third party product to accomplish
    this.  Below is the relevant text I received from MS tech support for my ticket....
    CAUSE: This is by design. The functionality needed for this is not currently implemented.
    RESOLUTION: We were able to find a 3<sup>rd</sup> party tool that may be able to schedule refresh for these
    reports (http://www.powerpivotpro.com/2015/02/introducing-power-update/)
    TROUBLESHOOTING:
    We assessed the report. It seemed that a Power Query data source needed to be created within Power BI, so we attempted to create that:
    We were prompted to create a default gateway, even though the data was O365 data
    We were only able to find references directly related to on-premise data sources and the default gateway
    We attempted to find a workaround for this particular situation. We attempted the following configurations:
    PowerPivot report populated by SharePoint lists
    Excel report implementing SharePoint lists with the Data tab
    Connecting the report to a SharePoint Document Library data source
    Using OData feed for report
    *All of the above configurations were unsuccessful
    Additional Information
    Even if a gateway could be created for the report, it would require Anonymous or Windows Authentication. O365 data sources require Claims Authentication.
    Scheduled refresh can be made for SQL Azure data sources. However, this would require configuring some type of automatic refresh for the SQL Azure data source itself to populate with the SharePoint list
    data.

  • How to purchase SharePoint Online subscription to develop?

    I am interested in developing sharepoint solutions. I learnt about SharePoint online that comes with Office365 suite, so that developers can utilize it to work on SharePoint. On which site we can buy office 365 subscription for SharePoint online?

    https://products.office.com/en-us/sharepoint/sharepoint-online-collaboration-software
    Scott Brickey
    MCTS, MCPD, MCITP
    www.sbrickey.com
    Strategic Data Systems - for all your SharePoint needs

  • How to migrate Office 2010 Pro application most recently opened document (MRU) to Office 2013 applications

    I am upgrading from Office 2010 Pro to Office 2013 Pro. In my test, we discovered that the MRUs are not getting migrated over from the Office 2010 Pro applications into the Office 2013 Pro applications.   I am using the Microsoft
    Office 2013 OCT to do the configurations.  In the OCT, I have "migrate user settings" checked, but that did not work for the users MRUs.  I came across the following link
    http://social.technet.microsoft.com/Forums/office/en-US/67b3622f-5b7c-4c57-b71d-c8c7de6f7da9/office-2010-pro-to-2013-not-migrating-settings-and-recent-history?forum=officeitpro
    That suggests manually creating the Migration key with sub keys like below
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\15.0\Common\Migration\Word]
    "UpgradeVersion"=dword:0000000d
    "Lang"=dword:00000409
    On the test machine that I was using and had installed Microsoft Office 2013 Pro on, I found the keys listed as follows
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\15.0\Common\Migration\Word]
    "UpgradeVersion"=dword:0000000e
    "Lang"=dword:00000000
    1) I would like to know which is correct subkey ("UpgradeVersion" and "Lang") to use?
    2) Since I am using the OCT, can I add or import them into the OCT add registry entries section?
    Thanks for your help.

    Since you are doing an uninstall-upgrade the MRU list will not migrate by default.
    "UpgradeVersion"=dword:0000000d means Office 14.0, also known as Office 2010
    "UpgradeVersion"=dword:0000000e means Office 15.0, also known as Office 2013
    "Lang"=dword:00000409 means Locale ID = English_United_States, and the "Lang"=dword:00000000 means default.
    In this case, you plan to migrate Office 2010 to 2013. thus, the correct one is
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Office\15.0\Common\Migration\Word]
    "UpgradeVersion"=dword:0000000e
    "Lang"=dword:00000409 (00000000 is ok as well)
    Yes, you may import them into OCT registry entries section, or you may deploy these registry keys before migration.
    Tony Chen
    TechNet Community Support

  • How to migrate Project Server 2003 to Project Online?

    Hi Guys,
    Is it possible to migrate Project Server 2003 to Project Online directly? I heard we normally have to take 3 hops for this; 
    1. Project Server 2003 - Project Server 2007 migration.
    2. Project Server 2007 - Project Server 2010 migration.
    3. Finally, Project Server 2010 - Project Online migration.
    Is there a migration tool we can use to simply jump from Project Server 2003 to Project Online?
    Thank You,
    Arnel

    NO, directly you can not migrate. You have to follow the sequence 
    1. Project Server 2003 to project server 2007  
    2. Project Server 2007 to project server 2010
    3. Project Server 2010 to project server 2013 online.
    Unfortunately we dont have nay tool which will help us to do this .
    Microsoft has a virtual machine (2007) that you can use to jump to 2007. Basically the databases of 2003 must be converted to 2007. Once this is done (database at 2007) you can use this database as start point to be converted to 2010.
    Microsoft has virtual machine for 2010 too if you want you can use it rather than creating your own environment.
    Don't use 2007 backward compatibility mode in 2010, we experienced some issues with it. 
    kirtesh

  • How to Migrate Exchange 2010 to 2013

    am planning to migrate my existing Exchange 2010 Environment to Exchange 2013, My Existing setup as follows below.
    2MBX Which is part of DAG, 1CAS/1HUB/1Archival MBX . Please advise me how to initiate and complete successfully.
    OS : windows server 2008 R2 Ent.
    Forest Functional Level : Windows server 2003
    Domain Functional Level : Window server 2003
    Also we have Gateway for external emails SPAM Filtering.
    Thanks, Venkatesh. &quot;Hardwork Never Fails&quot;

    You're in the Lync forums, I'd post this question in the Exchange forums:
    http://social.technet.microsoft.com/Forums/exchange/en-US/home?forum=exchangesvrgeneral
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question please click "Mark As Answer".
    SWC Unified Communications

  • Powershell Error for SharePoint Online -"The remote server returned an error: (407) Proxy Authentication Required."

    I am trying to call sharepoint online from powershell. Below is the code. I get 
    Exception calling "ExecuteQuery" with "0" argument(s): "The remote server returned an error: (407) Proxy Authentication Required."
    $loadInfo1 = [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint.Client")
    $loadInfo2 = [System.Reflection.Assembly]::LoadWithPartialName("Microsoft.SharePoint.Client.Runtime")
    $webUrl = "ZZZZ"
    $username = "XXX"
    $password = "YYYY"
    $ctx = New-Object Microsoft.SharePoint.Client.ClientContext($webUrl) 
    $ctx.Credentials = New-Object Microsoft.SharePoint.Client.SharePointOnlineCredentials($username, $password)
    $web = $ctx.Web
    $lists = $web.Lists 
    $ctx.Load($lists)
    $ctx.ExecuteQuery()
    $lists| select -Property Title
    Raj-Shpt

    Hi,
    About how to access SharePoint online site using PowerShell, the blog below would be helpful:
    http://social.technet.microsoft.com/wiki/contents/articles/29518.csom-sharepoint-powershell-reference-and-example-codes.aspx
    Another two demos for your reference:
    http://www.hartsteve.com/2013/06/sharepoint-online-powershell/
    http://www.sharepointnutsandbolts.com/2013/12/Using-CSOM-in-PowerShell-scripts-with-Office365.html
    Thanks
    TechNet Community Support
    Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
    [email protected]

  • Developing SharePoint Online Solution

    Client using SharePoint Online and need to use several task list templates. However when download to SharePoint 2013 On-Premises with Dec 2013 CU and create local lists, cannot open the lists. Get correlation Id but ULS message not meaningful
    to me.
    Any idea why cannot create migrate SharePoint Online lists to SharePoint On-Premises?
    John

    Hi,
    Just for your information, SharePoint Online is always updated - as Office team apply the latest patches in SharePoint Online and later release the patches for on-premises.
    Have you tried to use the list temlates in another site in SharePoint Online? If it works in another site in SharePoint Online then I think the problem is somehow the Online has more recent patches than on-premise. Also is the list refering to another list/content
    types that might not be imported in the on-premise site?
    Thanks,
    Sohel Rana
    http://ranaictiu-technicalblog.blogspot.com

  • How to migrate search configuration and db from SharePoint 2007 to SharePoint 2010

    hi all
    currently we have a plan to migrate sharepoint 2007 farm to sharepoint 2010 with sp2 version. we have used the ssp, and only the search function.
    Now the search db is quite big.
    we have to use the database attach way to do migraion, because the old system must be online in 24 hours per day.
    what i want to know is can we migrate the search db directly instead of recreate content source and reconfigure the search and do full crawl?
    thanks.

    Hi,
    Below links should help you
    http://technet.microsoft.com/en-us/library/gg593614(v=office.14).aspx
    http://msdn.microsoft.com/en-us/library/office/ff828776(v=office.14).aspx
    http://www.orcsweb.com/blog/cory-granata/sharepoint2k7-to-2k10-migration-using-db-attach-method/
    http://technet.microsoft.com/en-us/library/cc263403.aspx
    Please remember to click 'Mark as Answer' on the answer if it helps you

Maybe you are looking for

  • Sync problem through iTunes between iOS devices and iCal

    This is a mess and has been troubling me for months. Please help! ***Devices: iPhone 5, iOS current iPad 1, iOS current MacBook Pro 10.7.current, iCal (2.8 ghz ICD2) ***Sync setup: I have and have used a MobileMe account but made sure both iPhone and

  • TS1424 What about error -1202?

    What about error -1202? I've had problems with Win 7 64bit installations spanning iTunes 10 to now iTunes 11. Connecting to the store generates -1202 unexpected errors. I can't seem to find clear definition to what error code -1202 is...

  • Blank drop-downs when using LOV with static VO

    Hello, I am using JDeveloper 11.1.2.3.0 I have set some attributes to display as LOV. The attributes that are connected with Entity Based VO are fine but those that are connected with Static List VO not. In the second case I am getting drop-downs wit

  • External SyncMaster T240 "snowing" since upgrade to 10.7.3?

    Since upgrading to 10.7.3 my SyncMaster T240 screen is "snowing". Any suggestions? I have repaired permissions, created a new monitor profile and tried all the "standard" fixes. Thanks, Bill

  • What to do? My sliders on the Macbook Pro don't work

    What is the fix for the problem? My sliders don't work in LR