Questions tagged [adlds]

Microsoft Active Directory Lightweight Directory Services (AD LDS) is a Lightweight Directory Access Protocol (LDAP) directory service that provides flexible support for directory-enabled applications, without the dependencies that are required for Active Directory Domain Services (AD DS).

AD LDS Features

Install from Media (IFM) Generation
With this feature, you can use a one-step Ntdsutil.exe or Dsdbutil.exe process to create installation media for subsequent AD LDS installations.
Audit AD LDS changes
With this feature, you can set up AD LDS auditing with a new audit subcategory to log old and new values when changes are made to objects and their attributes.
Data Mounting Tool
With this feature, you can view directory data that is stored online in snapshots that are taken at different points in time to better decide which data to restore, without having to restart the server.
Support for Active Directory Sites and Services
With this feature, you can use the Active Directory Sites and Services snap-in to manage replication among AD LDS instances. To use this tool, you must import the classes in MS-ADLDS-DisplaySpecifiers.LDF to extend the schema of a configuration set that you want to manage. To connect to an AD LDS instance that hosts your configuration set, specify the computer name and the port number of a server that hosts this AD LDS instance.
Dynamic list of LDAP Data Interchange Format (LDIF) files during instance setup
With this feature, you can make custom LDIF files available during AD LDS instance setup—in addition to the default LDIF files that are provided with AD LDS—by adding the files to the %systemroot%\ADAM directory.
Recursive linked-attribute queries
With this feature, you can create a single LDAP query that can follow nested attribute links. This can be very useful in determining group membership and ancestry.

101 questions
11
votes
1 answer

LDAP Sort with ordering rule fails

I am trying to make an ldap query against AD LDS to get users sorted on the cn attribute. The sort ordering rule should not be the default English, but it should order according to Swedish. I am doing this with System.DirectoryServices.Protocols API…
kls
  • 591
  • 3
  • 13
9
votes
1 answer

Active Directory server on Windows 7

I have a short question: Is it possible to run Active Directory server on Windows 7 Professional x64?I am testing some software integrated with CAS and I need to cooperate with different directory services like Apache Directory Server and Active…
rivasket
  • 377
  • 2
  • 6
  • 18
9
votes
4 answers

LDAP Server for development purposes on Windows 8

I need to test connectivity to LDAP from my application. I need something that I can easy install (preferred to be xcopy). Years ago I was using Active Directory Application Mode (ADAM) for this purposes. But it does not supported on Windows 8.…
Mike Chaliy
  • 25,801
  • 18
  • 67
  • 105
5
votes
1 answer

How to Bind asynchronously with LdapConnection

While asynchronously requesting the execution of LDAP operations via BeginSendRequest and EndSendRequest is pretty straightforward, I was not able to identify how the binding-process can be done asynchronously. Is there a possibility to bind…
HCL
  • 36,053
  • 27
  • 163
  • 213
5
votes
1 answer

Slow AD-LDS connection with the PrincipalContext-class via LDAP in SSL

On my dev machine I had to install an AD-LDS. In principal it works fine, however is the first connect to the AD-LDS via the PrincipalContext-class extremely slow (30 seconds+). It seems to me that it first tries to connect to some non existing host…
HCL
  • 36,053
  • 27
  • 163
  • 213
4
votes
1 answer

The LDAP Server is Unavailable using PrincipalContext and ADLDS

We are making use of ADLDS for our user management and authentication. We can successfully query the instance without problems. However, trying to perform an operation such as SetPassword will fail or even trying to create a new user if a password…
Scott
  • 729
  • 1
  • 11
  • 30
4
votes
2 answers

Simple bind to AD-LDS fails from remote computer

I am using the API System.DirectoryServices.AccountManagement to bind to an AD-LDS instance. I am using simple bind with a user that exists locally in the AD-LDS instance. It works when I run the client on the server that hosts AD-LDS but it doesn't…
kls
  • 591
  • 3
  • 13
3
votes
1 answer

Enable an Active Directory user with LDAP/Java

I'm trying to enable a user in the Active Directory with LDAP and Java (1.4). However I keep getting the following error: java.lang.NullPointerException at com.sun.jndi.ldap.LdapCtx.c_modifyAttributes(LdapCtx.java:1432) at …
Andreas
  • 2,007
  • 5
  • 26
  • 37
3
votes
0 answers

AD LDS as Claims Provider in ADFS not working

I am trying to set up AD LDS as a claims provider in ADFS using Microsoft document here. But I am not able to get it working. When I select the LDS option for my application instead of AD, I get following error. An error occurred. Contact your…
Chaitanya Gadkari
  • 2,669
  • 4
  • 30
  • 54
3
votes
1 answer

C#: How to write special characters to ADLDS?

I'm trying to write contacts into an ADLDS ldap for using them as a phone book for a Yealink T48G. Sometimes the name of the contact includes some special characters like "ö", "ß" and "é". If these characters are contained in the fields "givenName"…
lunardoggo
  • 120
  • 1
  • 3
  • 10
3
votes
1 answer

AD LDS through SSL on Windows Server 2012 R2

i am trying to configure my AD LDS instance to run through SSL so that i can connect to it from another computer using my application and perform password change operations. I installed the Certificate Authorities to create a Server certificate…
wookiee
  • 110
  • 1
  • 3
  • 11
3
votes
1 answer

LDAP not returning all attributes

I'm using Ldap to retrieve accounts from AD LDS: Hashtable props = new Hashtable(); props.put(Context.SECURITY_PRINCIPAL, "cn=adminuser,o=myorg,c=uk"); props.put(Context.SECURITY_CREDENTIALS, "password"); props.put(Context.INITIAL_CONTEXT_FACTORY,…
David Lavender
  • 8,021
  • 3
  • 35
  • 55
3
votes
1 answer

How to Disable "Password Operations Over LDAPS Only" policy in Active Directory

By default Active Directory doesn't allow to do password operations such as password updates or user creating with passwords over an LDAP connection, it requires an LDAPS connection. How can I disable this policy? I can ensure the connection between…
SureshAtt
  • 1,891
  • 2
  • 17
  • 22
2
votes
1 answer

How to delete a user in AD LDS with PowerShell?

I can create new users via $userContainerPath = 'LDAP://' + $targetADDomain $userContainer = New-Object System.DirectoryServices.DirectoryEntry -ArgumentList $userContainerPath $proxyObject = $userContainer.Children.Add('CN=' + $sAMAccountName,…
James
  • 21
  • 4
2
votes
0 answers

Error when changing password in AD LDS

I have problem when implemented password updating of user in AD LDS: it throws below error when calling connection.Modify(). Does anybody have experience with ADLDS and its errors? Operations Error:00002077: SvcErr: DSID-03380736, problem 5012…
kate
  • 179
  • 2
  • 16
1
2 3 4 5 6 7