C#根据计算机名获取对应IP地址
来源:网络整理 责任编辑:栏目编辑 发表时间:2013-07-01 07:30 点击:次
private string AddWindowsUser(string strDoamin, string strLogin, string strPwd)
{
DirectoryEntry obDirEntry = null;
try
{
obDirEntry = new DirectoryEntry("WinNT://" + strDoamin);
DirectoryEntries entries = obDirEntry.Children;
DirectoryEntry obUser = entries.Add(strLogin, "User");
obUser.Properties["FullName"].Add("Amigo");
object obRet = obUser.Invoke("SetPassword", strPwd);
obUser.CommitChanges();
return "";
}
catch (Exception ex)
{
//MessageBox.Show(ex.Message);
return ex.Message;
}
}
相关新闻>>
最新推荐更多>>>
- 发表评论
-
- 最新评论 更多>>