Do you know a delphi component to browse the AD? Where i can select and retrive for example an OU.

Comments

  1. Ah, that is a different exercise. I don't even want to go there ;)

    ReplyDelete
  2. You could always grab it through powershell to avoid all those COMplex operations ;)

    Try this at the powershell command line
    $info = ([adsisearcher]"objectclass=organizationalunit")
    $info.PropertiesToLoad.AddRange("CanonicalName")
    $info.findall().properties.canonicalname

    ReplyDelete
  3. Stefan Glienke Martin Wienold no never... :D

    Lars Fosdal Yes, unfortunally it's a bit more then just a few routines to query the information. Just have/had the hope there is a all-round carefree package for doing that :D Else i'll have to write a minimalistic AD Browser on my own ^__^

    ReplyDelete

Post a Comment