Powershell-LDAP添加用户

时间:2013-07-16 07:21:54

标签: powershell ldap

我现在编写了一个脚本,它应该在>> LDAP<<<<<<<<<<<< (不是AD)。 它不返回任何错误,但未创建用户...

$authenticationType  = [System.DirectoryServices.AuthenticationTypes]::ServerBind
$obj = new-object system.directoryservices.directoryEntry ($Container, "uid=user,ou=ed,o=company", "password" ,  $authenticationType) 
$newobj = $obj.PSBase.Children.Add([string]$RDN,[string]$Class)
$obj.PSBase.CommitChanges()

我用$ RDN调用我的函数,这是用户名,$ class =“user”和$ container(“LDAP://server.com:999 / ou = user,o = company”)对象的路径应该被创造。

我希望有人可以帮助我;)

电贺 Madeye

1 个答案:

答案 0 :(得分:0)

解决了:)

我将ADSI:和目录:条目结合起来以获得我的解决方案。

Greetz Madeye