首页 > 其他 > 详细

修改域中用户密码

时间:2014-06-07 15:21:23      阅读:390      评论:0      收藏:0      [点我收藏+]
static void Main(string[] args)
        {
            //string path = @"LDAP://CN=sp\administrator";
            string username = "administrator";
            string password = "6yhn^YHN";
            string newPwd = "7ujm&UJM";
            //DirectoryEntry de = new DirectoryEntry(path, username, password);
            //de.Invoke("ChangePassword", new object[] { password, newPwd });
            //de.CommitChanges();
            
            ChangeWinUserPasswd(username,password ,newPwd);
        }
        public static void ChangeWinUserPasswd(string username, string oldPwd, string newPwd)
        {
            DirectoryEntry localMachine = new DirectoryEntry("WinNT://" + Environment.MachineName + ",computer");
            DirectoryEntry user = localMachine.Children.Find(username, "user");
            object[] password = new object[] { oldPwd, newPwd };
            object ret = user.Invoke("ChangePassword", password);
            user.CommitChanges();
            localMachine.Close();
            user.Close();
        }

修改域中用户密码,布布扣,bubuko.com

修改域中用户密码

原文:http://blog.csdn.net/u014316433/article/details/28394129

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!