Installation

This article describes the steps required to install LDAPCPSE in your SharePoint farm.

About the installation

Installing LDAPCP SE is much easier and safer than LDAPCP Classic because it uses the deployment type ApplicationServer, which implies that:

  • Its features are installed with a specific, additional step, preventing conflicts.
  • Its assemblies are deployed on truly all SharePoint servers.

Download the latest release

Browse to the latest release and download LDAPCPSE.wsp.

Install LDAPCP SE

Finalize the installation

On each SharePoint server, restart the IIS and the SharePoint timer services:

Restart-Service -Name @("W3SVC", "SPTimerV4")

Enable the claims provider

To be enabled, LDAPCP SE must be associated with the SPTrustedLoginProvider created when the federation was configured.
Execute this script on the server running the central administration:

$trust = Get-SPTrustedIdentityTokenIssuer "YOUR_SPTRUST_NAME"
$trust.ClaimProviderName = "LDAPCPSE"
$trust.Update()