-
Hi, With LDAPCP I was using the following to do increase the PP lookup limit from 30 to 75:
How can I do this in in LDAPCP SE ? Thanks, |
Beta Was this translation helpful? Give feedback.
Answered by
Yvand
Sep 4, 2024
Replies: 1 comment 1 reply
-
Hi @Jo311, here is how you can do it with LDAPCPSE : Add-Type -AssemblyName "Yvand.LDAPCPSE, Version=1.0.0.0, Culture=neutral, PublicKeyToken=80be731bc1a1a740"
$config = [Yvand.LdapClaimsProvider.LDAPCPSE]::GetConfiguration()
$settings = $config.Settings
$settings.MaxSearchResultsCount = 50
$config.ApplySettings($settings, $true) |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Jo311
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi @Jo311, here is how you can do it with LDAPCPSE :