真的难倒在这里,我确定答案很简单。简单地说,我根据电子表格的输入创建了一堆AD帐户。我已经能够将字段连接到我每次新用户加入时运行的DSADD命令。例如:
@echo off
dsadd user "CN=Bilbo Baggins,ou=Hobbiton,ou=Shire,ou=MiddleEarth,dc=lotr,dc=com" -fn Bilbo -ln Baggins -display "Bilbo Baggins" -upn bbaggins@lotr.com -pwd damnring! -email bbaggins@lotr.com -samid bbagins -mustchpwd no -disabled no
当我将其粘贴到cmd行并点击Enter all is well时,会创建AD帐户。我有数百个这样的 - 所以我想我会想到并把这些命令放在他们自己的线上并称之为哦,我不知道" add_all_users.bat"。但是,当我从命令行或PS实例调用它时,错误输出"语法不正确"。
我在这里缺少什么?