Upgrade-SPSingleSignOnDatabase
Published: July 16, 2012
Applies to: SharePoint Foundation 2013 | SharePoint Server 2013 Enterprise
Migrates the application definitions from Single Sign-On (SSO) database to Secure Store database as target applications.
Upgrade-SPSingleSignOnDatabase -SecureStoreConnectionString <String> -SecureStorePassphrase <SecureString> -SSOConnectionString <String> [-AssignmentCollection <SPAssignmentCollection>]
Parameters
| Parameter | Required | Type | Description | ||
|---|---|---|---|---|---|
| SecureStoreConnectionString | Required | System.String | Specifies the SQL Server connection string for the Secure Store database. | ||
| SecureStorePassphrase | Required | System.Security.SecureString | Specifies the passphrase used for the Secure Store database. | ||
| SSOConnectionString | Required | System.String | Specifies the SQL Server connection string for the SSO database. | ||
| AssignmentCollection | Optional | Microsoft.SharePoint.PowerShell.SPAssignmentCollection | Manages objects for the purpose of proper disposal. Use of objects, such as SPWeb or SPSite, can use large amounts of memory and use of these objects in Windows PowerShell scripts requires proper memory management. Using the SPAssignment object, you can assign objects to a variable and dispose of the objects after they are needed to free up memory. When SPWeb, SPSite, or SPSiteAdministration objects are used, the objects are automatically disposed of if an assignment collection or the Global parameter is not used.
|
Detailed Description
The Upgrade-SPSingleSignOnDatabase cmdlet migrates the application definitions from SSO database to Secure Store database as target applications. Use the Upgrade-SPSingleSignOn cmdlet to convert an SSO database to a Secure Store database. SSO is a SharePoint Server feature. SSO functionality is performed by the Secure Store Service in SharePoint Server 2013.
Input Types
Return Types
------------------EXAMPLE------------------
Upgrade-SPSingleSignOnDatabase -SSOConnectionString "Data Source=oldServer;Database=SSO;Trusted_Connection=yes;" -SecureStoreConnectionString "Data Source=CONTOSO\SQLDatabase;Database=ContosoSSDatabase;Trusted_Connection=yes;" –SecureStorePassphrase "abcDEF123!@#"
This example migrates the SSO database at the SSO connection to a Secure Store database at the Secure Store connection.
Change History
| Date | Description |
|---|---|
| July 16, 2012 | Initial publication |

Note: