New-SPTrustedSecurityTokenIssuer
Published: July 16, 2012
Applies to: SharePoint Server 2013 Enterprise
Creates a trust between a server to server principal.
New-SPTrustedSecurityTokenIssuer [-Name] <String> -Certificate <X509Certificate2> [-AssignmentCollection <SPAssignmentCollection>] [-Confirm [<SwitchParameter>]] [-Description <String>] [-IsTrustBroker <SwitchParameter>] [-RegisteredIssuerName <String>] [-WhatIf [<SwitchParameter>]]
New-SPTrustedSecurityTokenIssuer [-Name] <String> -MetadataEndPoint <Uri> [-AssignmentCollection <SPAssignmentCollection>] [-Confirm [<SwitchParameter>]] [-Description <String>] [-IsTrustBroker <SwitchParameter>] [-RegisteredIssuerName <String>] [-WhatIf [<SwitchParameter>]]
Parameters
1| Parameter | Required | Type | Description | ||
| Name | Required | System.String | Specifies the name of the issuer. | ||
| Certificate | Required | System.Security.Cryptography.X509Certificates.X509Certificate2 | Specifies the X509Certificate object that represents the public key of the signing certificate of the security token issuer. | ||
| 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.
| ||
| Confirm | Optional | System.Management.Automation.SwitchParameter | Prompts you for confirmation before executing the command. For more information, type the following command: get-help about_commonparameters | ||
| Description | Optional | System.String | Specifies the description of the issuer. | ||
| IsTrustBroker | Optional | System.Management.Automation.SwitchParameter | Specifies whether the trust is established with a self-issuer partner app (that is, Exchange Server 2010 or Exchange Server 2007 or Lync). | ||
| RegisteredIssuerName | Optional | System.String | |||
| WhatIf | Optional | System.Management.Automation.SwitchParameter | Displays a message that describes the effect of the command instead of executing the command. For more information, type the following command: get-help about_commonparameters |
| Parameter | Required | Type | Description | ||
| Name | Required | System.String | Specifies the name of the issuer. | ||
| MetadataEndPoint | Required | System.Uri | Specifies the URI for the metadata endpoint of the issuer. | ||
| 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.
| ||
| Confirm | Optional | System.Management.Automation.SwitchParameter | Prompts you for confirmation before executing the command. For more information, type the following command: get-help about_commonparameters | ||
| Description | Optional | System.String | Specifies the description of the issuer. | ||
| IsTrustBroker | Optional | System.Management.Automation.SwitchParameter | Specifies whether the trust is established with a self-issuer partner app (that is, Exchange Server 2010 or Exchange Server 2007 or Lync). | ||
| RegisteredIssuerName | Optional | System.String | |||
| WhatIf | Optional | System.Management.Automation.SwitchParameter | Displays a message that describes the effect of the command instead of executing the command. For more information, type the following command: get-help about_commonparameters |
Detailed Description
This cmdlet contains more than one parameter set. You may only use parameters from one parameter set, and you may not combine parameters from different parameter sets. For more information about how to use parameter sets, see Cmdlet Parameter Sets.
Use the New-SPTrustedSecurityTokenIssuer cmdlet to establish a trust between a server to server principal.
Input Types
Return Types
-----------EXAMPLE-----------
New-SPTrustedSecurityTokenIssuer -Name "SPFarmA" -MetadataEndPoint https://mysite/my/_layouts/metadata/test/1/ -isSelfIssuer “false”
This example creates a new trusted security token named SPFarmA.
Change History
| Date | Description |
|---|---|
| July 16, 2012 | Initial publication |

Note: