Dopo aver installato Sharepoint non ho fatto il wizard.
Ho creato l’applicazione WEB : impostato provider autenticazione NTLM
Successivamente ho eliminato dalla console di database di contenuto e ho proceduto con il ripristino dell’originale.
Script per database
Verifica Db di contenuto:
Get-SPContentDatabase -WebApplication “Sharepoint – 80” | Select Name
Verifica database: Test-SPContentDatabase -Name WSS_Content_9000 -WebApplication “XXXXXX – 9000“
Associazione all’applicazione Web: Mount-SPContentDatabase -name “WSS_Content_9000” -DatabaseServer “XXXXXX\SQLEXPRESS” -WebApplication “xxxxx – 9000” -confirm:$false
Ho convertito il tipo di autenticazione da Classica a CLAIMS con il seguente script
Convert-SPWebApplication -Identity "https://<webappurl> -From Legacy -To Claims -RetainPermissions
Procedure seguite:
http://www.sharepointdiary.com/2013/09/migrate-from-sharepoint-2010-to-2013-step-by-step.html
Altri articoli in merito all’autenticazione
SharePoint assumes all users to be claim users and renders them so
a normal windows user – “Domain\UserName” appears as “i:0#.w|Domain\UserName”.
You need to converted SharePoint 2010 to claims format before migrating to SharePoint 2013.
Try to run the following command:
$WebApp = Get-SPWebApplication “WebAppURL”
Convert-SPWebApplication -Identity $WebApp -To Claims –RetainPermissions -Verbose
$WebApp.MigrateUsers($true)
Detailed explanation for your reference:
http://www.winwire.com/access-denied-error-after-migrating-to-sharepoint-2013/