Wednesday, October 19, 2011

Convert Classic to Claims Authenitication

You need to convert your web application authentication. No Problem.

Using powershell it is simple to convert from Classic to Claims based authentication.

WARNING - irreversible process

$temp = get-spwebapplication “http://intranet.contoso.com”
$temp.useclaimsauthentication = “True”
$temp.Update()

No comments:

Post a Comment