-
Notifications
You must be signed in to change notification settings - Fork 8
Ldap Server Capabilities
Jiri Formacek edited this page Nov 22, 2024
·
2 revisions
#Can my LDAP server support paged search?
$Ldap = Get-LdapConnection -LdapServer ldap.mydomain.com
$dse = Get-RootDse -LdapConnection $Ldap
if($dse.supportedControl -contains '1.2.840.113556.1.4.319') {
'Paged search supported!'
}
# Can my LDAP server retrieve attributes via ranged retrieval?
if($dse.supportedControl -contains '1.2.840.113556.1.4.802') {
'Ranged attribute retrieval supported!'
}$Ldap = Get-LdapConnection -LdapServer ldap.mydomain.com
(Get-RootDse -LdapConnection $Ldap).CurrentTime - [DateTime]::Now$Ldap = Get-LdapConnection -LdapServer ldap_behind_load_balancer.mydomain.com
(Get-RootDse -LdapConnection $Ldap).dnsHostName