批量新增Active Directory帳號

2021-03-31 14:53:36 字數 964 閱讀 9374

將以下**儲存成bb.vbs檔案。

set objou = getobject("ldap://**=users,dc=domain,dc=***")

const forreading = 1

set objfso = createobject("scripting.filesystemobject")

set objtextfile = objfso.opentextfile("a.txt", forreading)

'檔案格式

'帳號,顯示名稱

'如:test,測試

'    zhenghai,曾海

do until objtextfile.atendofstream

strnextline = objtextfile.readline

arrlist = split(strnextline, ",")

set objuser = objou.create("user", "**=" & arrlist(1))

objuser.put "samaccountname", arrlist(0)

objuser.put "displayname", arrlist(1)

objuser.put "description", "gz"

objuser.setinfo

set objuser = getobject("ldap://**=" & arrlist(1) & ",**=users,dc=domain

,dc=***")

objuser.setpassword "cm"

loop

然後在同一目錄下新建一文字檔案,命名為a.txt。

檔案內容為:(注意,不要有空格)

test,測試

zhenghai,曾海

在裝了ad的windows 2000 server主機上執行vbs檔案,即可加入。

設定帳號的其它資訊可參考msdn

mybatis批量修改,批量新增

mybatis批量修改 批量新增sql語句 1 單個新增 insert into t user user name,mobile values 2 新增並返回主鍵 keyproperty的屬性是要返回的主鍵欄位的名稱 insert into t user user name,mobile value...

mybatis批量查詢,批量新增,批量更新

一 多條件批量查詢 先上 再講解 select from ifs company where id and code id標籤不用多說,和dao方法一一對應。parametertype標籤寫list就可以,如果是其他型別對應寫就可以。resultmap,自己定義的欄位實體類對應。二 批量新增 先上 ...

批量新增使用者

總結為4個步驟 1 需要新增的使用者,先存放到 使用者檔案 中 2 真實密碼儲存在shadow裡,etc passwd中為佔位符,現在將shadow中的密碼寫到passwd中,此時passwd中儲存的為真實密碼。3 密碼檔案 寫到passwd中 4 使用者配置檔案裡的密碼再寫回shadow中 編輯使...

表單批量新增

批量新增表單如何寫?1.方案一 if alistdata class data row class class if alistdata data regtype eq 1 普通 else 美術 class name exam exch class name exam exeng class nam...

批量新增使用者

newusers命令匯入使用者資訊檔案 格式 username userpassword uid gid usernote userhome shell 首先用vi建立 user.info檔案 可以在其寫入 brother01 1001 3 home brother01 bin bash broth...