批量新增域使用者

2021-08-25 15:12:58 字數 1008 閱讀 8662

批量新增域使用者

下面是addusers.vbs的內容:它從同資料夾的users.txt讀取要新增的使用者及其密碼.

set adsou=getobject("[url=ldap://cn=users,dc=fkdl,dc=local]ldap://cn=users,dc=fkdl,dc=local[/url]")

const forreading = 1

set objfso = createobject("scripting.filesystemobject")

set objtextfile = objfso.opentextfile _

("users.txt", forreading)

do until objtextfile.atendofstream

strnextline = objtextfile.readline

arruserlist = split(strnextline , ",")

struser=arruserlist(0)

strpass=arruserlist(1)

set adsuser=adsou.create("user","cn=" & struser)

adsuser.put "samaccountname", struser

adsuser.put "userprincipalname", struser & "@fkdl.local"

adsuser.setinfo

adsuser.setpassword strpass

adsuser.accountdisabled=false

adsuser.setinfo

loop

users.txt格式:

使用者,密碼

2批量增加使用者到組

net localgroup 組名 使用者名稱 /add

3批量增加2000使用者

net user使用者名稱 密碼 /add

/fullname:"使用者全名"

手動做成批處理檔案即可。

批量新增域使用者

公司現在需要搭建乙個域環境,作為乙個網管有來了一次活啊。乙個乙個的新增使用者這是很不明智的選擇啊,使用者基本上都有一些共同的屬性,批量處理比較方便。基本環境 windows server 2003 簡體中文版 sp2 網域名稱 milipp.com 利用for 語句輕鬆搞定 我們需要建立兩個檔案fo...

HOW TO 批量新增域使用者

author 水如煙 用的是vbs.我的網域名稱是fkdl.lcoal,新增使用者到users中.下面是addusers.vbs的內容 它從同資料夾的users.txt讀取要新增的使用者及其密碼.set adsou getobject ldap users,dc fkdl,dc local cons...

mysql批量新增使用者 技巧 批量建立域使用者帳號

歡迎進入windows社群論壇,與300萬技術人員互動交流 進入 第一部分 情景 新建域環境,需要建立大批使用者帳號。環境 windows server 2003 sp2 dc 操作 1 在c盤根目錄下建立 add.cmd 和 userlist.txt 兩個檔案。虛線內為實際內容。add.cmd 檔...