Remove

This article describes the steps required to remove LDAPCPSE from your SharePoint farm.

Important

Do not merely retract the solution! The features must be manually deactivated and uninstalled before the solution is retracted.

Important

Do all the operations below on the server running the central administration, and in a new PowerShell process.

Reset property ClaimProviderName in the SPTrustedIdentityTokenIssuer

Unfortunately, the only supported way to clear the property ClaimProviderName is to remove and recreate the SPTrustedIdentityTokenIssuer object.
Alternatively, this property can be reset using .NET reflection, but this is not supported and you do this at your own risks:

# Set private member m_ClaimProviderName to null. Note that using .NET reflection on SharePoint objects is not supported and you do this at your own risks
$trust = Get-SPTrustedIdentityTokenIssuer "<SPTRUST_NAME>"
$trust.GetType().GetField("m_ClaimProviderName", "NonPublic, Instance").SetValue($trust, $null)
$trust.Update()

Uninstall LDAPCP SE