我可以使用 dsadd 命令行在根 OU 中添加用户。但是,我无法在子 OU 中添加用户。如何使用 dsadd 命令行将用户添加到子 OU?
这是我的命令行。
dsadd user "cn=XXXX,ou=TEST,dc=mycompany,dc=com" -upn [email protected] -fn XXXX -ln YYYY
-display XXXXYYYY -pwd 1234567 -desc "IT PERSONAL" -mustchpwd yes
提前致谢。
答案1
也许可以尝试使用 PowerShell 选项,新AD用户
New-ADUser GlenJohn -Type iNetOrgPerson -Path "DC=AppNC" -server lds.Fabrikam.com
或者
New-ADUser GlenJohn -OtherAttributes @{title="director";mail="[email protected]"}
它有一个-小路参数允许您设置父 OU,如下所示:
-Path "ou=mfg,dc=noam,dc=corp,dc=contoso,dc=com"
答案2
另一个使用 PowerShell 的好工具是 Quest AD 命令行这里。它允许您使用 -ParentContainer 设置 OU,并且还具有大量其他功能。
new-qaduser -ParentContainer "ou=sales,dc=contoso,dc=com" -UserPrincipalName [email protected] -FirstName Jim -LastName Jim