Home > Database > Mysql Tutorial > body text

技巧:批量创建域用户帐号

WBOY
Release: 2016-06-07 15:23:28
Original
2352 people have browsed it

欢迎进入Windows社区论坛,与300万技术人员互动交流 >>进入 第一部分 情景:新建域环境,需要创建大批用户帐号。 环境:Windows Server 2003 + SP2 (DC) 操作: 1、在C盘根目录下创建 add.cmd 和 UserList.txt 两个文件。虚线内为实际内容。 add.cmd (文件

欢迎进入Windows社区论坛,与300万技术人员互动交流 >>进入

    第一部分

    情景:新建域环境,需要创建大批用户帐号。

    环境:Windows Server 2003 + SP2 (DC)

    操作:

    1、在C盘根目录下创建 add.cmd 和 UserList.txt 两个文件。虚线内为实际内容。

    add.cmd (文件内容为一行,无回车)
    ======================================================

    For /F "tokens=1,2" %%a in (UserList.txt) do dsadd user CN=%%a,OU=test,DC=altn,DC=Com -upn %%a@altn.com -display %%b -pwd p@ssw0rd -pwdneverexpires yes
    ======================================================

    UserList.txt (拼音和中文名之间有一个空格)
    ======================================================

    zhangsan 张三
    lisi 李四
    wangwu 王五
    ======================================================

    2、运行 add.cmd ,搞定。

[1] [2] 

技巧:批量创建域用户帐号

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template