Installation steps
Download the latest zip file to at least get configuration file.
Before installing and setting the CNRS custom claim provider as the default provider for your SPTrustedIdentityTokenIssuer
you must first adapt the
configuration file : farm.json and put it in c:\CNRSccp on all servers in the farm that run the fondation service. The simplest is to put bon all servers except the SQL box and of course the WAQ.
The drive, the name of the folder and the json file cannot be changed.
- Download the solution package or build it
- add the solution with Add-SPSolution -LiteralPath C:\temp\CNRSccp.wsp
- then install solution with Install-SPSolution CNRSccp.wsp -GACDeployment -Force
- you can check the result with Get-SPClaimProvider
you then set you SPTrustedIdentityTokenIssuer with this powershell
$ti = Get-SPTrustedIdentityTokenIssuer "you token issuer name"
$ti.ClaimProviderName = "CNRSccp"
$ti.Update()