Adding the new certificates to your CA SiteMinder trusted identity provider involves several steps using the SharePoint 2010 Management shell.
We recommend using a PowerShell script that contains all of the commands, such as the one shown in the following example:
Remove-SPTrustedRootAuthority CASigningRootCert
Remove-SPTrustedRootAuthority CASigningCert
$rootcert = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2("full_path_to_updated_certificate_authority_certificate.cer")
$cert = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2("full_path_to_signing_certificate.cer")
$tip = Get-SPTrustedIdentityTokenIssuer name_of_siteminder_trusted_identity_provider
$tip.SigningCertificate = $cert
$tip.Update()
New-SPTrustedRootAuthority -Name "CASigningRootCert" -Certificate $cert
New-SPTrustedRootAuthority -Name "CASigningCert" -Certificate $cert
Follow these steps:
full_path_to_updated_certificate_authority_certificate
Example: C:\exampleserver\certificates\rootcertificate.cer
full_path_to_signing_certificate
Example: C:\exampleserver\certificates\signingcertificates\sharepointsigningcertificate.cer
name_of_siteminder_trusted_identity_provider
Example: SiteMinder_TIP
The Windows PowerShell script is created.
|
Copyright © 2013 CA.
All rights reserved.
|
|