banner
李大仁博客

李大仁博客

天地虽大,但有一念向善,心存良知,虽凡夫俗子,皆可为圣贤。

使用dsadd批量添加AD域用户

将需要导入的用户以 csv 格式组织

姓 名   全名   登录名      密码
张,三,  张三,  three.zhang,pass01
李,四,  李四,  four.li,    passo2
王,五,  王五,  five.wang,  pass03
刘,六,  刘六,  six.liu,    passo4
赵,七,  赵七,  seven.zhao, pass05

执行脚本,使用 dsadd 添加域用户

for /f "tokens=1,2,3,4,5 delims=," %a in (users.csv) do dsadd user "cn=%c,ou=cosmos.com,dc=cosmos,dc=com" -samid %d -upn %d@cosmos.com -fn %b -ln %a -pwd %e -disabled no

中途注意检查重名,否则导入失败

Loading...
Ownership of this post data is guaranteed by blockchain and smart contracts to the creator alone.