[ Team LiB ] |
Chapter 25. Using ADSI and ADO from ASP or VBTwo important features of Active Directory require administrators to create their own tools:
If you take advantage of these, there is a large chance that you will want to provide customized tools for administration. For example, you might decide that a group of users is to manage only certain properties of certain objects, say which users can go into a group. There is no point in giving them Active Directory Users and Computers snap-in; that's like using a sledgehammer to crack a nut. Why not create a tool of your own that only allows them to manipulate the values that they have permission to? If you then incorporate logging into a file or database within this application, you have a customized audit trail as well. Tools of this nature do not lend themselves to VBScript since they tend to require a much more enhanced GUI interface. Consequently, you are left with three choices:
We will concentrate on the first two in this chapter. |
[ Team LiB ] |