您好,登錄后才能下訂單哦!
這篇文章主要為大家展示了“vbs中怎么實(shí)現(xiàn)批量添加域用戶”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“vbs中怎么實(shí)現(xiàn)批量添加域用戶”這篇文章吧。
代碼如下:
set adsou=getobject("ldap://cn=users,dc=hzcncter,dc=local") 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 & "@hzcncter.local" adsuser.setinfo adsuser.setpassword strpass adsuser.accountdisabled=false adsuser.setinfo loop
注意保存后,更改一下dc名稱(紅色字體),如果ou名稱是英文,也可以連ou名稱一起更改,這樣就可以直接將用戶建立到ou里面。
以上是“vbs中怎么實(shí)現(xiàn)批量添加域用戶”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對大家有所幫助,如果還想學(xué)習(xí)更多知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。