When you create a new SharePoint web application in Central Administration you can choose from Classic Mode and Claim Based Authentication. After the application is created there is no way how to change it in Central Administration. Nevertheless you can still do it in PowerShell:
$app = Get-SPWebApplication [web app url, e.g. http://portal]
$app.UseClaimsAuthentication = "True"
$app.Update()
That's all!
$app.UseClaimAuthentication is miss-spelled ('s' is missing). It should be:
ReplyDelete$app.UseClaimsAuthentication = "True"
You're right. Thanks!
ReplyDeletehow can I tell what the current app is set to
Delete