最新下载
热门教程
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
使用C#代码实现增加用户帐号
时间:2022-07-02 11:09:15 编辑:袖梨 来源:一聚教程网
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();
}
}
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();
}
}
相关文章
- 崩坏星穹铁道斯缇科西亚若虫位置一览 07-01
- 洛克王国世界机甲小子捕捉方法 07-01
- XRoad(XRI币)排名是什么 07-01
- 金铲铲之战s14街头恶魔主c阵容构筑推荐 07-01
- 魔兽世界11.1雷鼓哑炮火箭怎么获得 07-01
- 燕云十六声金弓金玦快速打造方法 07-01