Previous Topic: Identify your Trusted Identity ProviderNext Topic: Remove the Claim Type from your Trusted Identity Provider


Remove the ClaimsMapping Identity from your Trusted Identity Provider

Removing a claim from your CA SiteMinder trusted identity provider involves several steps using the SharePoint 2010 Management Console. This example removes a claim for the last name of a user from the CA SiteMinder trusted identity provider. Use this example as a guide to remove any claim you want from your CA SiteMinder trusted identity provider.

Follow these steps:

  1. Enter the following command to assign the name of your <stmdnr> trusted identity provider to a variable:
    $trutsed_identity_provider_variable_name = Get-SPTrustedIdentityTokenIssuer -Identity "name_of_siteminder_trusted_identity_provider"
    
  2. Enter the following command to verify that the correct item is assigned to the variable:
    echo $trutsed_identity_provider_variable_name 
    
  3. Enter the following command to remove the claim from the CA SiteMinder trusted identity provider. The command shown in the following example removes a claim for the last name of a user:
    Remove-SPClaimTypeMapping -Identity "http://schemas.xmlsoap.org/claims/lastname"  -TrustedIdentityTokenIssuer
    
    $trutsed_identity_provider_variable_name
    
  4. Repeat Step 1 to refresh the variable for the CA SiteMinder trusted identity provider.