Switch from Classic to Claims Authentication in SharePoint 2010
SharePoint 2013 tutorials, SharePoint 2010 articles, SharePoint interview questions: Switch from Classic to Claims Authentication in Sh...: In this article we will discuss how to switch from Classic Mode Authentication to Claims Authentication.
$webApp = Get-SPWebApplication “http://web application URL/”
$webApp.UseClaimsAuthentication = 1
$webApp.Update()
$webApp.ProvisionGlobally()
$webApp.MigrateUsers($True)
$webApp = Get-SPWebApplication “http://web application URL/”
$webApp.UseClaimsAuthentication = 1
$webApp.Update()
$webApp.ProvisionGlobally()
$webApp.MigrateUsers($True)
Comments
Post a Comment