HI,
I have a sharepoint 2010 web application having authentication mode as Claims authentication.
I want to Revert my application from Claims Authentication to Windows Authentication using Powershell script.
I tried this using the script :
$webApp = Get-SPWebApplication "http://webapplicationurl"$webApp.UseClaimsAuthentication = 0;
$webApp.Update()
After the script was run i did IIS Reset, but received an web.config related error on the site page.









