Create mutiple PCs in the Domain using vbScripts
- From: JeporoxAKO <JeporoxAKO@xxxxxxxxxxxxxxxxxxxxxxxxx>
- Date: Tue, 14 Apr 2009 08:11:01 -0700
Hello all,
Does anyone has a sample script that basically creates multiple PCs in the
domain?
A text file contains all the PCs then the script reads it and add those pcs
that's in the text file to the domain. I found a sample but it is not working
properly. I've included the script that I am using which I got from the web.
Thank you in advance.
JB
(
Dim objFSO, strFilePath, objFile, strContainer
Dim objContainer, strComputerName, objComputer
On ERROR RESUME NEXT
Const ADS_UF_WORKSTATION_TRUST_ACCOUNT = &H1000
Const ADS_UF_PASSWD_NOTREQD = &H20
'objComputer.Put "userAccountControl", _
'ADS_UF_PASSWD_NOTREQD Or ADS_UF_WORKSTATION_TRUST_ACCOUNT
Const ForReading = 1
' Specify container where computer objects created.
strContainer ="ou=SAMPLE_OU,dc=XYZ,dc=org"
Set objContainer = GetObject("LDAP://; & strContainer")
' Specify the text file of computerNames.
strFilePath = "c:\Scripts\pc.txt"
' Open the file for read access.
Set objFSO = CreateObject("Scripting.FileSystemObject")
Set objFile = objFSO.OpenTextFile(strFilePath, ForReading)
' Read each line of the file and create computer accounts.
Do Until objFile.AtEndOfStream
strComputerName = Trim(objFile.ReadLine)
' Skip blank lines.
If (strComputerName <> "") Then
On Error Resume Next
Set objComputer = objContainer.Create("computer", "cn=" _
& strComputerName)
If (Err.Number <> 0) Then
Wscript.Echo "Unable to create computer " & strComputerName
End If
On Error GoTo 0
objComputer.Put "sAMAccountName", strComputerName & "$"
'objComputer.Put "userAccountControl",
ADS_UF_WORKSTATION_TRUST_ACCOUNT
On Error Resume Next
objComputer.SetInfo
If (Err.Number <> 0) Then
Wscript.Echo "Unable to set properties for computer " _
& strComputerName
End If
On Error GoTo 0
End If
Loop
' Clean up.
objFile.Close
Wscript.Echo "Done"
)
.
- Follow-Ups:
- Re: Create mutiple PCs in the Domain using vbScripts
- From: Richard Mueller [MVP]
- Re: Create mutiple PCs in the Domain using vbScripts
- Prev by Date: RE: access txt file on a linux server that has samba setup?
- Next by Date: Re: Run Exe From a CD with wildcard
- Previous by thread: Run Exe From a CD with wildcard
- Next by thread: Re: Create mutiple PCs in the Domain using vbScripts
- Index(es):
Relevant Pages
|