|
| OS = W2K Advanced Server
Purpose = Instructor's Active Directory Setup
Subject = Checking for and Removing Like Name OU
Scenario: I am using the following VBScript to create a
top level Organizational Unit. At this time the VBScript
works really well to create an OU as long as there is no
existing OU by the same name.
Question: How do I add (and where within the script) to
this existing script the ability to check for an existing
OU and remove it if it exist so I can continue with the
script without error?
Set Root = GetObject("LDAP://rootDSE")
Set Domain = GetObject("LDAP://" & Root.Get
("defaultNamingContext"))
Set OU=Domain.Create("organizationalUnit","OU=Demo")
OU.Put "Description", "Demonstration OU"
OU.SetInfo
An up front Thank You for your time and reply...TJ
|
|