We are planning migration from SharePoint 2013 to SharePoint 2016. Have checked all web applications with
Get-SPAuthenticationProvider -Zone "Default" -WebApplication https://teamstest.domain All except one are like this
DisplayName : Windows Authentication ClaimProviderName : AD AllowAnonymous : False UseBasicAuthentication : False DisableKerberos : False UseWindowsIntegratedAuthentication : True AuthenticationRedirectionUrl : /_windows/default.aspx UpgradedPersistedProperties : But one is set to this:
DisplayName : Windows Authentication ClaimProviderName : AD AllowAnonymous : False UseBasicAuthentication : True DisableKerberos : True UseWindowsIntegratedAuthentication : True AuthenticationRedirectionUrl : /_windows/default.aspx UpgradedPersistedProperties : How can I convert this to the state of the other web applications?
I have found different aproaches by powershell like
$wa.MigrateUsers($true) or
Convert-SPWebApplication As I do not know anything about authentication I do not know if one of these fit this issue.
There are just 5 site collections on this web application. One of them got more than 200 sub sites. So I would not like to go the way of creating all the sites within a new web application with "DisableKerberos:False".