Created
May 28, 2014 07:07
-
-
Save ishajain/3a35924d7b87f2ffd060 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $webApp = Get-SPWebApplication "My web application url here" | |
| $webApp | Get-SPContentDatabase | ft Name # get the content database number | |
| $arguments = New-Object Microsoft.SharePoint.Administration.SPWebApplication+SPMigrateUserParameters | |
| $arguments.AddDatabaseToMigrate($webApp.ContentDatabases[0]) | |
| $webApp.MigrateUsersToClaims("farm admin account", $false, $arguments) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment