Scripting Active Directory with PowerShellIntroduction to Scripting Active Directory with PowerShellWhat makes scripting Active Directory tricky is that we need so many different skills. However, if you are a beginner don't worry, very little knowledge is assumed. If you are experienced with PowerShell's commands you may prefer to jump straight to Example 4. Topics for PowerShell and Active Directory
Skills Checklist
ADUC (Active Directory Users and Computers)Scripters are born looking for shortcuts. Their very first action was probably to copy and paste someone else's script. What I cannot understand therefore, is why scripters as a breed are so unwilling to use GUIs. It's as though a GUI is their enemy, or a cheat method that they dare not touch. I take the view that examining the corresponding GUI compliments my script. Perhaps I am addicted to using both in tandem, because every time I have a walk-through with the GUI, the menus give me ideas for a better script. There is also the point that inspecting the object's properties using ADUC, provides proof that the script has indeed executed as intended. Or more likely, that the script has not worked, but observing the results helps me to troubleshoot a problem with the code. What ADUC also alerts us to is the true domain name. Is your domain name plain YourCompany, or does it have an extension, for example, YourCompany.com? In passing, could I reminder you that in LDAP dc= means domain context, and not domain controller. A general inspection of a User's property sheet will reveal dialog boxes labelled: First name, Last name and User logon name. It is these fields (or similar) that I recommend we revisit after running the script. The next connection to make is the relationship between say 'Last Name' and the object property called 'sn'. In fact, they are one and the same, but how did I know that? The answer is to spend time researching, or just exploring with ADSI Edit. LDAP - As Revealed by ADSI EditThe ADSI Edit utility, which is found on the Server CD or here, will reveal the connection between property names, for example: GUI - You see, User logon name: Guy's LDAP Learning TechniqueMy mission, as always, is to get you started. So here is simple technique that I employ when I am unsure of which LDAP name to include in my script. Let us take it as read that you are practising on a test domain. If you only have a live domain, then at least create a test OU with test users. The secret is to change a value in the GUI and then see if you can find the very same string in ADSI Edit. If so, then you have learned the equivalence between the GUI menu, and the LDAP property. For example, go to the Last name of your test user, enter 'Thomas', now search through ADSI Edit until you find 'Thomas'. The conclusion is that, Last name: corresponds to 'sn'.
There is an alternative, and that is to get a list of LDAP properties, which you keep by your side when scripting. PowerShell Script to Connecting to Active DirectoryPre-requisites 1) Install PowerShell
Instructions:
2) Check Your Domain Name To double-check that your domain is what you think it is, launch ADUC and see whether your domain is one word, or whether it has an additional, .com or .local extension. Example 1: Simple Script to Echo the Active Directory Domain# PowerShell Connects to Active Directory $Dom = 'LDAP://DC=cp;DC=mosel' Learning PointsNote 1: 'LDAP://DC=cp;DC=mosel'. Rather than using the traditional .local namespace for non-internet domains, I prefer .mosel merely because it happens to be the road where I live! Naturally you changed the value for this $Dom variable in your live script? Didn't you? Note 2: New-Object is such an insignificant command, yet it is vital for creating objects, which we can use for connecting connect to Active Directory. Note 3: DirectoryServices.DirectoryEntry is one of the key commands to connect to Active Directory. I think of this as a pipeline to the root of my domain's namespace. Note 4: I realize that Example 1 is short. Also from a design point of view it does not achieve much. If you are familiar with PowerShell jump to Example 4. Else, stick with my master plan to build up gradually and go to Example 2.
˚
Example 2: To Count the Objects in Your Active DirectoryPre-requisite. Once again, change $Dom to reflect your domain, and not mine. # PowerShell Counts objects in Active Directory $Dom = 'LDAP://DC=cp;DC=mosel' # Create a selector and start searching from the Root of AD Learning Points
Note 1: If you get a result greater than zero, then your script is working. If the number is blank, then check for a typo in your $Dom domain name. The following result, would
mean an error with $Dom:
Challenge: One of the best ways of learning is to see if you can alter the script, and still get a meaningful result. My challenge is to amend the script to count only the objects in the Users container.
Thus amend, or redefine $DOM to include CN=Users;. If you examine ADUC, the yellow Users folder does not have the tiny OU icon / motif, thus is a container object and not actually an Organizational Unit. Hence we use CN=User and not OU=User. Example 3: Adding a Where ClausePre-requisites
# PowerShell Counts Person Objects in Active Directory Learning PointsNote 1: The key parameter, or switch, is -match. Again, to truly understand how it works, try substituting -like for -match. What you find is that with -like you need to add the wildcard *, for example, "CN=Person*". Note 2: To see why I choose 'Person' and not 'User', try a simple substitution, "CN=User" Challenge: To learn more about LDAP
properties try this: My point is that objectClass is different from objectCategory. Bizarrely, 'User' includes Computers as well as User accounts. Furthermore, I truly believe that learning PowerShell will teach you more about Active Directory. Example 4: Adding a Foreach LoopPre-requisites
# PowerShell Displays Firstname and surname of Users Learning PointsNote 1: Let us examine what is inside the foreach loop. Firstly, we create a new variable called $prop to hold the object's properties. Next we Write-host, the properties that we are interested in starting with givenname. Note 2: I added a loop counter, $i. At the top of the script I set the value to zero, then I increment with $i++. Challenge: Part of the reason that I added to the $i loop counter is to compare different scripts. For instance, if you add an 'if' filter this should drastically
reduce the number of objects. Here is my challenge, add this code after the $prop and before $i++ Important: Add a balancing closing bracket }. Placing a second bracket before the existing } will do nicely. See here for the answer / result of Guy's Challenge Tim de Vries has an improvementTim has written kindly pointing out that while the above script is ok for a small number of users, for a large domain you need to declare a larger pagesize, for example: $Root.pagesize = 1000 Tim suggests this modification: ------ Thank you Tim. Brian Suggests$selector.pagesize = 1000 (Instead of $Root.pagesize = 1000 ) Summary of PowerShell and Active DirectoryIt was with much relief that I discovered that PowerShell supplied a mechanism to query Active Directory. The secret is starting with new-object, then choosing the specific Com objects, DirectoryServices.DirectoryEntry and DirectoryServices.DirectorySearcher. How easy you find the rest of my script depends on your experience of pure PowerShell techniques, for example foreach loops, and 'Where' clauses. See more PowerShell QAD tasks• PowerShell Home • Quest QAD • QADUser • QADGroup • QADComputer • Export-CSV • Import CSV Please write in if you see errors of any kind. Please report any factual mistakes, grammatical errors or broken links, I will be happy to not only to correct the fault, but also to give you credit.
*
|
||||||