Dec 282010
 

First post to start off with in regards to Active Directory –
How.

I have used a couple of methods, both with varying degrees of success.

  1. Using ActiveX and command line commands
  2. Using ActiveX and IADs/ADSI

Using the first has the advantage of being able to pass different credentials onto the command, which enables me to run the script as a different user to the one I’m logged in under.
The second method is a bit cleaner to write, but it needs me logged in under a user that has read/write privileges to AD if I want to change anything, but just viewing AD objects is fine however.
Depending on your environment, I have found that either method works. With the first method, you will get command line windows opening up and closing by themselves when executing queries which may or may not annoy you a bit or a lot.

Either way will work though.

Share
Dec 262010
 

I have been making some scripts for work recently and have found that no one seems to use Active Directory and Javascript together.
Some of you, or probably all of you will say “That’s because VBScript is better”, which I don’t particularly agree with.
While VBScript is good in it’s own way, I’m not too familiar with it, and while trying to start scripting I found out that I can’t easily resize, add, or remove elements from arrays, which was something I was doing quite regularly.

So I have decided to create this blog, which I will post up snippets and code that may be a help to anyone trying to manipulate AD with Javascript.

Share