一、首先创建一个csv填写用户信息

---------------------------------------------------------------------------------

name,ln,fn,IDcare#,tel,desP,work,user,sex,physisc

001,考试,001,441900,22835666,市政务服务与数据管理局,exam,001,,

002,考试,002,441900,22835666,市政务服务与数据管理局,exam,002,,

003,考试,003,441900,22835666,市政务服务与数据管理局,exam,003,,


二、脚本运行bat(以管理员权限)

@echo off

for /f "skip=1 tokens=1-9 delims=," %%a in (%~dp0\info.csv) do (

dsadd user cn=%%a,OU=考试专用,OU=A区,OU=自助,DC=vdesktop,DC=com -samid %%h -upn %%h@vdesktop.com -display %%a -fn %%c -ln %%b -pwd Zz123456 -mustchpwd no -pwdneverexpires yes -disabled no -desc IDCare:%%d -tel %%e -dept %%f -title %%g

)

pause