Datamation content and product recommendations are
editorially independent. We may make money when you click on links
to our partners.
Learn More
Author:Yi Helen Wang yi.wang@doj.state.or.us
Platform:Windows NT
Windows 2000
Type:VBScript,ADSI
DESCRIPTION:
This script is for an administrator who wants to search for a particular user through Active Directory of local or remote Windows 2000 servers. It also prevents duplication when new users are added into Active Directory.
Scroll down to view the script.
SCRIPT:
on error resume next
dim oContainer,searchpath
dim oRoot
dim oConnect, oCommand, rs
dim strConnect, strDomainCtrl, strOU
dim cntuser, newuser, strCN, strSearchUser
newuser = false
cntuser = 0
set oRoot = GetObject("LDAP: //RootDSE")
call ShowError("Permission issues !")
strDomainCtrl = oRoot.Get("defaultNamingContext")
strOU = InputBox("Please entry an Organization Unit Name to search: ", "Searching","Legal")
if Len(Trim(strOU)) = 0 then
msgbox "No information typed in!"
else
strConnect = "LDAP://OU=" & strOU & ", " & strDomainCtrl
set oContainer = GetObject(strConnect)
call ShowError("OUNameNotExist")
searchpath = oContainer.ADsPath
strSearchUser = InputBox("Please entry the user searched initial: ", "Searching", "sls")
if Len(Trim(strSearchUser))=0 then
msgbox "No information typed in!"
else
set oConnect = CreateObject("ADODB.Connection")
set oCommand = CreateObject("ADODB.Command")
call ShowError("ADOProblems")
oConnect.Provider = "ADsDSOObject"
oConnect.Open "Active Directory Provider"
call ShowError("ADOProvider")
Set oCommand.ActiveConnection = oConnect
strCN = strSearchUser
DO WHILE newuser True
oCommand.CommandText = "SELECT samAccountName FROM '" & searchpath & "' WHERE objectClass='user' AND samAccountName = '" & strSearchUser & "'"
set rs = oCommand.Execute
if rs.EOF and rs.BOF then
msgbox "New user"
newuser = True
else
cntuser = cntuser + 1
strSearchUser = left(strCN,1) & right(strCN,1) & cntuser
msgbox "Rename CN as " & strSearchUser
set rs = nothing
end if
LOOP
end if
end if
sub ShowError(strErr)
if err 0 then
if err = 432 or err=70 then
wscript.echo "Permission issues to run the program"
wscript.quit
else
select case strErr
case "OUNameNotExist"
wscript.echo "OU name is not correct or not exist !"
wscript.quit
case "ADOProblems"
wscript.echo "ADO problems!"
wscript.quit
case "ADOProvider"
wscript.echo "ADO Provider Problems!"
wscript.quit
end select
end if
end if
end sub
Disclaimer: We hope that the information in these pages is valuable to you. Your use of the information contained in these pages, however, is at your sole risk. All information on these pages is provided "as -is", without any warranty, whether express or implied, of its accuracy, completeness, fitness for a particular purpose, title or non-infringement, and none of the third-party products or information mentioned in the work are authored, recommended, supported or guaranteed by me. I shall not be liable for any damages you may sustain by using this information, whether direct, indirect, special, incidental or consequential, even if it has been advised of the possibility of such damages.
RELATED NEWS AND ANALYSIS
Huawei
FEATURE | By Rob Enderle,
December 04, 2020
Keeping Machine Learning Algorithms Honest in the ‘Ethics-First’ Era
ARTIFICIAL INTELLIGENCE | By Guest Author,
November 18, 2020
Key Trends in Chatbots and RPA
FEATURE | By Guest Author,
November 10, 2020
Top 10 AIOps Companies
FEATURE | By Samuel Greengard,
November 05, 2020
What is Text Analysis?
ARTIFICIAL INTELLIGENCE | By Guest Author,
November 02, 2020
How Intel
ARTIFICIAL INTELLIGENCE | By Rob Enderle,
October 29, 2020
Dell Technologies World: Weaving Together Human And Machine Interaction For AI And Robotics
ARTIFICIAL INTELLIGENCE | By Rob Enderle,
October 23, 2020
The Super Moderator, or How IBM Project Debater Could Save Social Media
FEATURE | By Rob Enderle,
October 16, 2020
Top 10 Chatbot Platforms
FEATURE | By Cynthia Harvey,
October 07, 2020
Finding a Career Path in AI
ARTIFICIAL INTELLIGENCE | By Guest Author,
October 05, 2020
CIOs Discuss the Promise of AI and Data Science
FEATURE | By Guest Author,
September 25, 2020
Microsoft Is Building An AI Product That Could Predict The Future
FEATURE | By Rob Enderle,
September 25, 2020
Top 10 Machine Learning Companies 2020
FEATURE | By Cynthia Harvey,
September 22, 2020
NVIDIA and ARM: Massively Changing The AI Landscape
ARTIFICIAL INTELLIGENCE | By Rob Enderle,
September 18, 2020
Continuous Intelligence: Expert Discussion [Video and Podcast]
ARTIFICIAL INTELLIGENCE | By James Maguire,
September 14, 2020
Artificial Intelligence: Governance and Ethics [Video]
ARTIFICIAL INTELLIGENCE | By James Maguire,
September 13, 2020
IBM Watson At The US Open: Showcasing The Power Of A Mature Enterprise-Class AI
FEATURE | By Rob Enderle,
September 11, 2020
Artificial Intelligence: Perception vs. Reality
FEATURE | By James Maguire,
September 09, 2020
Anticipating The Coming Wave Of AI Enhanced PCs
FEATURE | By Rob Enderle,
September 05, 2020
The Critical Nature Of IBM
ARTIFICIAL INTELLIGENCE | By Rob Enderle,
August 14, 2020
SEE ALL
APPLICATIONS ARTICLES