home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / sdk / netds / adsi / sampapp / adscmd / readme.txt < prev    next >
Encoding:
Text File  |  1997-07-29  |  792 b   |  28 lines

  1. Active Directory Service Interfaces 1.0, Sample C++ Application
  2.  
  3. Overview:
  4.  
  5. This simple command line based program shows how to use Active Directory to browse and display objects of any Directory Service. Its usage is as follows:
  6.  
  7.     adscmd [list|dump] <ADsPath>
  8.  
  9. For example, for a Windows NT system
  10.  
  11.     adscmd dump WinNT://MYDOMAIN/SomeUser
  12.  
  13. will dump the properties of SomeUser in MYDOMAIN. Or, on an NDS system:
  14.  
  15.     adscmd list NDS://MYTREE
  16.  
  17. will list the top of the MYTREE tree. Note that the namespace ("WinNT", "NDS") is case sensitive.
  18.  
  19. List of files:
  20.  
  21. MAIN.CXX    main program
  22. UTIL.HXX    helper functions
  23. DUMP.CXX    functions to dump properties of an object
  24. ENUM.CXX    functions to enumerate children of a container
  25. MAIN.HXX    main include file
  26. MAKEFILE    makefile
  27.  
  28.