欢迎光临
我们一直在努力

使用C#代码实现增加用户帐号-.NET教程,C#语言

建站超值云服务器,限时71元/月

using system;

using system.directoryservices; //要增加此dll文件

private void button3_click(object sender, system.eventargs e)

{

try

{

directoryentry ad = new directoryentry("winnt://" +

environment.machinename + ",computer");

directoryentry newuser = ad.children.add("testuser1", "user"); //帐号

newuser.invoke("setpassword", new object[] {"#12345abc"}); // 密码

newuser.invoke("put", new object[] {"description", "test user from .net"});

newuser.commitchanges();

directoryentry grp;

grp = ad.children.find("guests", "group");

if (grp != null) {grp.invoke("add", new object[] {newuser.path.tostring()});}

console.writeline("account created successfully");

console.readline();

}

catch (exception ex)

{

console.writeline(ex.message);

console.readline();

}

}

赞(0)
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com 特别注意:本站所有转载文章言论不代表本站观点! 本站所提供的图片等素材,版权归原作者所有,如需使用,请与原作者联系。未经允许不得转载:IDC资讯中心 » 使用C#代码实现增加用户帐号-.NET教程,C#语言
分享到: 更多 (0)