Pages

Search This Blog

Saturday, January 21, 2012

Switch Application on Claim Authentication

If your application is currently configured with window authentication, and want to switch on claim, you can use below powershell commends for it.

$SPWebApp = Get-SPWebApplication "http://localhost"
$ SPWebApp.UseClaimsAuthentication = $True
$ SPWebApp.Update()
$webapp.ProvisionGlobally()
iisreset

No comments:

Post a Comment