尝试创建新的Active Directory用户,Invoke(“SetPassword”,pwd)Sharepoint 2013

时间:2014-04-07 18:30:09

标签: c# sharepoint

这是我的代码,当我在控制台应用程序中运行它的工作时,但是为sharepoint创建一个webpart它返回异常403禁止异常抛出的行   user.Invoke(“SetPassword”,new object [] {“password”});

          user = Ldap.Children.Add("cn=username", "user");
        user.Properties["SAMAccountName"].Add("username");
        user.Properties["sn"].Add("userfn");
        user.Properties["givenName"].Add("userln");


        user.CommitChanges();
       user.Invoke("SetPassword", new object[] { "password" });
        // On va maintenant activer le compte : ADS_UF_NORMAL_ACCOUNT
        user.Properties["userAccountControl"].Value = 0x0200;

        // On envoie les modifications au serveur
        user.CommitChanges();

0 个答案:

没有答案