SharePoint convert the web application from Classic Mode Authentication to Claims based Authentication

$App = get-spwebapplication “URL”

$app.useclaimsauthentication = “True”

$app.Update()

Example:-
$App = get-spwebapplication “http://sp1:8000”

$app.useclaimsauthentication = “True”

$app.Update()

Comments

Popular posts from this blog

SharePoint Close methods for SP Long Operations and Redirect Error Page

SQL SERVER – FIX : Error 3154: The backup set holds a backup of a database other than the existing database

The model backing the context has changed since the database was created. Consider using Code First Migrations to update the database