Python pyad 模块无法设置 UPN
Python pyad module can't set UPN
我正在使用 pyad 模块来创建活动目录。
我有一个问题,我无法将 UPN 后缀正确设置为 @mycompany.local
这是代码:
new_user = pyad.adcontainer.ADUser.create("Hugo Test", ou, password="Passw0rd", upn_suffix="@mycompany.local", optional_attributes = {"samaccountname":"htest","userPrincipalName":"htest","givenname":"Hugo","sn":"Test","displayName":"Hugo Test"})
用户创建没有任何问题,但 UPN 后缀在我的活动目录中仍然是空的。
活动目录:2012
派德:0.5.15
ptyhon : 3.5.2
知道哪里出了问题吗?
好的,我会回答我自己的问题。
我通过在 userPrincipalName 中设置 UPN 后缀解决了这个问题
所以代码看起来像:
new_user = pyad.adcontainer.ADUser.create("Hugo Test", ou, password="Passw0rd", upn_suffix="@mycompany.local", optional_attributes = {"samaccountname":"htest","userPrincipalName":"htest@mycompany.local","givenname":"Hugo","sn":"Test","displayName":"Hugo Test"})
我正在使用 pyad 模块来创建活动目录。 我有一个问题,我无法将 UPN 后缀正确设置为 @mycompany.local
这是代码:
new_user = pyad.adcontainer.ADUser.create("Hugo Test", ou, password="Passw0rd", upn_suffix="@mycompany.local", optional_attributes = {"samaccountname":"htest","userPrincipalName":"htest","givenname":"Hugo","sn":"Test","displayName":"Hugo Test"})
用户创建没有任何问题,但 UPN 后缀在我的活动目录中仍然是空的。
活动目录:2012 派德:0.5.15 ptyhon : 3.5.2
知道哪里出了问题吗?
好的,我会回答我自己的问题。 我通过在 userPrincipalName 中设置 UPN 后缀解决了这个问题 所以代码看起来像:
new_user = pyad.adcontainer.ADUser.create("Hugo Test", ou, password="Passw0rd", upn_suffix="@mycompany.local", optional_attributes = {"samaccountname":"htest","userPrincipalName":"htest@mycompany.local","givenname":"Hugo","sn":"Test","displayName":"Hugo Test"})