views:

113

answers:

1

I need to get a list of user names from Active Directory using C++Builder. I know I could shell out to batch file and run the csvde.exe command but surely there is a nicer way using a library or something, right? Are there any C++ libraries? (hopefully with examples?) Many thanks! -Dan

A: 

Why not just use the SDK API for AD? Active Directory Service Interfaces Reference. There are examples for most common operations at Using Active Directory Service Interfaces

Remus Rusanu