Sharepoint 2013 to 2016

de Fraine, Sean 20 Reputation points
2024-09-05T15:05:43.3333333+00:00

Hi,

Help I need somebody as The Beatles once said.

Getting the following error trying to upgrade 2013 to 2016 and cannot find what subsite is using 2010 experience using any commands or programs for love nor money.

Anyone help?

Thanks,

Sean

Category        : LegacySiteDetected

Error           : True

UpgradeBlocking : True

Message         : 1 site(s) using SharePoint 2010 experience.

Remedy          : Please upgrade sites using SharePoint 2010 experience in database WSS_Content to SharePoint 2013

                  experience before proceeding.

Locations       :

SharePoint
SharePoint
A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.
10,601 questions
0 comments No comments
{count} votes

Accepted answer
  1. RaytheonXie_MSFT 35,071 Reputation points Microsoft Vendor
    2024-09-06T01:29:26.6766667+00:00

    Hi @de Fraine, Sean

    It seems that you have some sites that are still using the SharePoint 2010 experience, which is not compatible with the SharePoint 2016 farm. Run below powershell to check if all site collection are in the same version:

    get-spsite 
    

    For example:

    User's image

    If there are sites with a collection compatibility level other than 15, run below script to upgrade

    User's image

    $webApps = Get-SPWebApplication -Identity "http://servername:12345/" 
    $sites = $webApps.Sites
    foreach($site in $sites) 
    {Upgrade-SPSite -Identity $site -VersionUpgrade -Unthrottled $site.Dispose()}
    

    If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".

    Note: Please follow the steps in our documentation to enable e-mail notifications if you want to receive the related email notification for this thread.

    1 person found this answer helpful.

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.