Ошибка VBScript 80040E14 Синтаксическая ошибка в предложении FROM - PullRequest
0 голосов
/ 11 мая 2011

Я пытаюсь использовать сценарий, который я нашел в Интернете, чтобы разрешить массовое создание новых учетных записей пользователей в Active Directory с использованием VBScript и файла CSV.Я не использую CSVDE b / c, этот скрипт также будет создавать пароли.Я продолжаю сталкиваться с этой ошибкой при запуске кода, я не могу понять это.Кто-нибудь может помочь?

'*********************************************************************
' Script: createUsersFromCSV.vbs                                     *
' Creates new user accounts in Active Directory from a CSV file.     *
' Input: CSV file with layout logonname,firstname,lastname,password  *
'                                                                    *
'*********************************************************************

Option Explicit

Dim sCSVFileLocation
Dim sCSVFile
Dim oConnection
Dim oRecordSet
Dim oNewUser

' Variables needed for LDAP connection
Dim oRootLDAP
Dim oContainer

' Holding variables for information import from CSV file
Dim sLogon
Dim sFirstName
Dim sLastName
Dim sDisplayName
Dim sPassword
Dim nPwdLastSet
Dim nUserAccountControl ' Used to enable the account
Dim sDomain
Dim sCompany
Dim sPhone
Dim sEmail
Dim sDescription

Dim NumChar, Count, strRdm, intRdm
Dim fso, f, fso1, f1

'* Modify this to match your company's AD domain
sDomain="mydomain.local"

'* Input file location
sCSVFileLocation = "C:\Documents and Settings\Administrator\Desktop\" 'KEEP TRAILING SLASH!

'* Full path to input file
sCSVFile = sCSVFileLocation&"newusers.csv"

' Commands used to open the CSV file and select all of the records
set oConnection = createobject("adodb.connection")
set oRecordSet = createobject("adodb.recordset")
oConnection.open "Provider=Microsoft.Jet.OLEDB.4.0;Data Source= " & _
sCSVFileLocation & ";Extended Properties=""text;HDR=NO;FMT=Delimited"""
oRecordSet.open "SELECT * FROM " & sCSVFile ,oConnection

' Create a connection to an Active Directory OU container.
Set oRootLDAP = GetObject("LDAP://rootDSE")
Set oContainer = GetObject("LDAP://ou=Test," & _
oRootLDAP.Get("defaultNamingContext")) 

on error resume next 

do until oRecordSet.EOF ' Reads the values (cells) in the sInputFile file.



   ' --------- Start creating user account
   ' Read variable information from the CSV file
   ' and build everything needed to create the account
   sLogon = oRecordSet.Fields.Item(0).value
   sFirstName = oRecordSet.Fields.Item(1).value
   sLastName = oRecordSet.Fields.Item(2).value
   sDisplayName = sFirstName&" "&sLastName
   sPassword = oRecordSet.Fields.Item(3).value

   ' Build the User account
Set oNewUser = oContainer.Create("User","cn="&sFirstName&" "&sLastName)
oNewUser.put "sAMAccountName",lcase(sLogon)
oNewUser.put "givenName",sFirstName
oNewUser.put "sn",sLastName
oNewUser.put "UserPrincipalName",lcase(SLogon)&"@"&sDomain
oNewUser.put "DisplayName",sDisplayName
oNewUser.put "name",lcase(sLogon)

' Write this information into Active Directory so we can
' modify the password and enable the user account
oNewUser.SetInfo

' Change the users password
oNewUser.SetPassword sPassword
oNewUser.Put "pwdLastSet", 0

' Enable the user account
oNewUser.Put "userAccountControl", 512
oNewUser.SetInfo


objFile.Close

'*******************
oRecordset.MoveNext
Loop
'*******************
' Used only for debugging
'if err.number = -2147019886 then
' msgbox "User logon " & sLogon & "already exists"
'End If
' --------- End of user account creation

Вот где происходит ошибка, строка 51 char 1:

oRecordSet.open "SELECT * FROM " & sCSVFile ,oConnection

1 Ответ

0 голосов
/ 11 мая 2011

Может быть, sCSVFile содержит специальные символы и поэтому должен быть экранирован следующим образом:

oRecordSet.open "SELECT * FROM [" & sCSVFile & "]", oConnection 

Надеюсь, это поможет.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...