How to convert Web application from Classic Mode authentication to Claims based Authentication
Follow PowerShell commands to convert the web application from Classic Mode Authentication to Claims based Authentication:
Go to CA-->Application Management-->Click on Manage Web Applications--> Click On your Classic based Authentication Web Application and you will find Authentication Providers on ribbon Interface,
U will find the following Figure.
It is a windows or classic base authentication.
Go to windows PowerShell, Type following CmdLets
$App=Get-SPWebApplication "http://sp2013/"
$App.UseClaimsAuthentication ="True"
$App.Update()
Or u Will find the Below Figure
After that, Go to Central administration Check It is a Claims Based Authentication or not
I think it is clear to any one..thanks for visiting my blog .....
Go to CA-->Application Management-->Click on Manage Web Applications--> Click On your Classic based Authentication Web Application and you will find Authentication Providers on ribbon Interface,
U will find the following Figure.
It is a windows or classic base authentication.
Go to windows PowerShell, Type following CmdLets
$App=Get-SPWebApplication "http://sp2013/"
$App.UseClaimsAuthentication ="True"
$App.Update()
Or u Will find the Below Figure
After that, Go to Central administration Check It is a Claims Based Authentication or not
I think it is clear to any one..thanks for visiting my blog .....
.png)
.png)
.png)
Comments
Post a Comment