Thursday 8 August 2013

Converting SharePoint website from Classic to Claims based Authentication


$App = get-spwebapplication “URL”

$app.useclaimsauthentication = “True”

$app.Update()

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

$app.useclaimsauthentication = “True”

$app.Update()

No comments:

Post a Comment

Rescan Disk Option Greyed Out | New Disks Not visible on Disk management | Update-HostStorageCache

  Recently I have added several LUN from NetApp Storage to Hyper-V servers. But in the disk management I couldn't see those new LUN. Exi...