Share via


Set-SPSecurityTokenServiceConfig

Updates the settings of the SharePoint security token service (STS) identity provider.

Syntax

QueueSigningCertificateReference

Set-SPSecurityTokenServiceConfig
    -QueueSigningCertificateThumbprint <String>
    [-AssignmentCollection <SPAssignmentCollection>]
    [-Confirm]
    [-FormsTokenLifetime <Int32>]
    [-MaxLogonTokenCacheItems <Int32>]
    [-MaxServiceTokenCacheItems <Int32>]
    [-QueueSigningCertificateStoreName <String>]
    [-ServiceTokenCacheExpirationWindow <Int32>]
    [-ServiceTokenLifetime <Int32>]
    [-WhatIf]
    [-WindowsTokenLifetime <Int32>]
    [<CommonParameters>]

RevokeSigningCertificateReference

Set-SPSecurityTokenServiceConfig
    -RevokeSigningCertificateThumbprint <String>
    [-AssignmentCollection <SPAssignmentCollection>]
    [-Confirm]
    [-FormsTokenLifetime <Int32>]
    [-MaxLogonTokenCacheItems <Int32>]
    [-MaxServiceTokenCacheItems <Int32>]
    [-RevokeSigningCertificateStoreName <String>]
    [-ServiceTokenCacheExpirationWindow <Int32>]
    [-ServiceTokenLifetime <Int32>]
    [-WhatIf]
    [-WindowsTokenLifetime <Int32>]
    [<CommonParameters>]

SigningCertificateReference

Set-SPSecurityTokenServiceConfig
    -SigningCertificateThumbprint <String>
    [-AssignmentCollection <SPAssignmentCollection>]
    [-Confirm]
    [-FormsTokenLifetime <Int32>]
    [-MaxLogonTokenCacheItems <Int32>]
    [-MaxServiceTokenCacheItems <Int32>]
    [-ServiceTokenCacheExpirationWindow <Int32>]
    [-ServiceTokenLifetime <Int32>]
    [-SigningCertificateStoreName <String>]
    [-WhatIf]
    [-WindowsTokenLifetime <Int32>]
    [-QueueSigningCertificateThumbprint <String>]
    [-QueueSigningCertificateStoreName <String>]
    [<CommonParameters>]

SigningCertificateImport

Set-SPSecurityTokenServiceConfig
    [-AssignmentCollection <SPAssignmentCollection>]
    [-Confirm]
    [-FormsTokenLifetime <Int32>]
    [-ImportSigningCertificate <X509Certificate2>]
    [-MaxLogonTokenCacheItems <Int32>]
    [-MaxServiceTokenCacheItems <Int32>]
    [-ServiceTokenCacheExpirationWindow <Int32>]
    [-ServiceTokenLifetime <Int32>]
    [-WhatIf]
    [-WindowsTokenLifetime <Int32>]
    [<CommonParameters>]

SigningCertificateQueue

Set-SPSecurityTokenServiceConfig
    [-AssignmentCollection <SPAssignmentCollection>]
    [-Confirm]
    [-FormsTokenLifetime <Int32>]
    [-MaxLogonTokenCacheItems <Int32>]
    [-MaxServiceTokenCacheItems <Int32>]
    [-QueueSigningCertificate <X509Certificate2>]
    [-ServiceTokenCacheExpirationWindow <Int32>]
    [-ServiceTokenLifetime <Int32>]
    [-WhatIf]
    [-WindowsTokenLifetime <Int32>]
    [<CommonParameters>]

SigningCertificateRevoke

Set-SPSecurityTokenServiceConfig
    [-AssignmentCollection <SPAssignmentCollection>]
    [-Confirm]
    [-FormsTokenLifetime <Int32>]
    [-MaxLogonTokenCacheItems <Int32>]
    [-MaxServiceTokenCacheItems <Int32>]
    [-RevokeSigningCertificate <X509Certificate2>]
    [-ServiceTokenCacheExpirationWindow <Int32>]
    [-ServiceTokenLifetime <Int32>]
    [-WhatIf]
    [-WindowsTokenLifetime <Int32>]
    [<CommonParameters>]

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.

The Set-SPSecurityTokenServiceConfig cmdlet updates the settings of the SharePoint security token service (STS) identity provider. If a certificate file is used, the certificate must be an X509 certificate with private keys, otherwise an exception is raised.

This cmdlet operates only with certificates that can be exported. To create a certificate which can be used in this cmdlet specify the X509KeyStorageFlags.Exportable bit in the keyStorageFlags parameter of the x509Certificate2 object constructor.

For permissions and the most current information about Windows PowerShell for SharePoint Products, see the online documentation at SharePoint Server Cmdlets.

Examples

EXAMPLE 1

Set-SPSecurityTokenServiceConfig -SigningCertificateThumbprint "2796BAE63F1801E277261BA0D77770028F20EEE4"

This example updates the signing certificate of the SharePoint security token service (STS) identity provider with a certificate that has been deployed in the certificate store.

EXAMPLE 2

$stsCert = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2 "c:\sts.pfx","a",20
Set-SPSecurityTokenServiceConfig -ImportSigningCertificate $stsCert

This example imports the signing certificate for the SharePoint STS identity provider.

Parameters

-AssignmentCollection

Applicable: SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019

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.

When the Global parameter is used, all objects are contained in the global store. If objects are not immediately used, or disposed of by using the Stop-SPAssignment command, an out-of-memory scenario can occur.

Parameter properties

Type:SPAssignmentCollection
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:True
Value from pipeline by property name:False
Value from remaining arguments:False

-Confirm

Applicable: SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019

Prompts you for confirmation before executing the command. For more information, type the following command: get-help about_commonparameters

Parameter properties

Type:SwitchParameter
Default value:None
Supports wildcards:False
DontShow:False
Aliases:cf

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-FormsTokenLifetime

Applicable: SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019

Specifies the expiration time, in minutes, for tokens issued to ASP.NET Membership Provider and Role providers. The default value is 1380.

The type must be a valid integer.

Parameter properties

Type:Int32
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-ImportSigningCertificate

Applicable: SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019

Specifies the X.509 certificate object from trusted authentication provider farm.

The type must be a name of a valid X.509 certificate; for example, Certificate1.

Parameter properties

Type:X509Certificate2
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

SigningCertificateImport
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-MaxLogonTokenCacheItems

Applicable: SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019

Specifies the maximum number of entries for the in-memory logon token cache. The default value is 250 entries.

The type must be a valid integer.

Parameter properties

Type:Int32
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-MaxServiceTokenCacheItems

Applicable: SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019

Specifies the maximum number of entries for the in-memory service token cache. The default value is 250 entries.

The type must be a valid integer.

Parameter properties

Type:Int32
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-QueueSigningCertificate

Applicable: SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019

Sets the provided certificate as the queued signing certificate.

Parameter properties

Type:X509Certificate2
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

SigningCertificateQueue
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-QueueSigningCertificateStoreName

Applicable: SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019

The store to search in when looking up a certificate to be set as the queued signing certificate by its thumbprint. Required if QueueSigningCertificateThumbprint was specified.

Parameter properties

Type:String
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

QueueSigningCertificateReference
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False
SigningCertificateReference
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-QueueSigningCertificateThumbprint

Applicable: SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019

Sets the certificate with the provided thumbprint as the queued signing certificate.

Parameter properties

Type:String
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

QueueSigningCertificateReference
Position:Named
Mandatory:True
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False
SigningCertificateReference
Position:Named
Mandatory:True
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-RevokeSigningCertificate

Applicable: SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019

Revokes the signing certificate that matches the provided certificate.

Parameter properties

Type:X509Certificate2
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

SigningCertificateRevoke
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-RevokeSigningCertificateStoreName

Applicable: SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019

The store to search when looking up a certificate to be revoked by its thumbprint. Required if the QueueSigningCertificateThumbprint was specified.

Parameter properties

Type:String
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

RevokeSigningCertificateReference
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-RevokeSigningCertificateThumbprint

Applicable: SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019

Revoke the signing certificate with the provided thumbprint.

Parameter properties

Type:String
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

RevokeSigningCertificateReference
Position:Named
Mandatory:True
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-ServiceTokenCacheExpirationWindow

Applicable: SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019

Specifies the interval, in minutes, for automatically renewing the token in the cache. The default value is 2 minutes.

The type must be a valid integer.

Parameter properties

Type:Int32
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-ServiceTokenLifetime

Applicable: SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019

Specifies the expiration time, in minutes, for the security token service cache. The default value is 15 minutes.

The type must be a valid integer.

Parameter properties

Type:Int32
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-SigningCertificateStoreName

Applicable: SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019

Specifies the certificate store where the signing certificate resides. The identity store for an identity provider can be a SQL database table, an Active Directory Domain Services (AD DS), or Active Directory Lightweight Directory Service (AD LDS).

The type must be a valid identity of a signing certificate store; for example IdentityStore1.

Parameter properties

Type:String
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

SigningCertificateReference
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-SigningCertificateThumbprint

Applicable: SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019

Specifies the thumbrpint of the signing certificate.

The type must be a valid identity of a signing certificate; for example 2796BAE63F1801E277261BA0D77770028F20EEE4.

Parameter properties

Type:String
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

SigningCertificateReference
Position:Named
Mandatory:True
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-WhatIf

Applicable: SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019

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 properties

Type:SwitchParameter
Default value:None
Supports wildcards:False
DontShow:False
Aliases:wi

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

-WindowsTokenLifetime

Applicable: SharePoint Server 2010, SharePoint Server 2013, SharePoint Server 2016, SharePoint Server 2019

Specifies the expiration time, in minutes, for tokens issued to Windows users. The default value is 1380 minutes.

The type must be a valid integer.

Parameter properties

Type:Int32
Default value:None
Supports wildcards:False
DontShow:False

Parameter sets

(All)
Position:Named
Mandatory:False
Value from pipeline:False
Value from pipeline by property name:False
Value from remaining arguments:False

CommonParameters

This cmdlet supports the common parameters: -Debug, -ErrorAction, -ErrorVariable, -InformationAction, -InformationVariable, -OutBuffer, -OutVariable, -PipelineVariable, -ProgressAction, -Verbose, -WarningAction, and -WarningVariable. For more information, see about_CommonParameters.